mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-07-09 16:19:53 -04:00
Missing lambda capture.
This commit is contained in:
parent
211d1d19ea
commit
75b1cc25ff
1 changed files with 2 additions and 2 deletions
|
@ -127,9 +127,9 @@ public:
|
||||||
|
|
||||||
void run() {
|
void run() {
|
||||||
message_map.register_handler(Message::ID::BasebandConfiguration,
|
message_map.register_handler(Message::ID::BasebandConfiguration,
|
||||||
[](const Message* const p) {
|
[this](const Message* const p) {
|
||||||
auto message = reinterpret_cast<const BasebandConfigurationMessage*>(p);
|
auto message = reinterpret_cast<const BasebandConfigurationMessage*>(p);
|
||||||
baseband_thread.set_configuration(message->configuration);
|
this->baseband_thread.set_configuration(message->configuration);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue