gc_adapter: Resolve C++20 deprecation warning
This commit is contained in:
parent
04699c366b
commit
ac7e4e2cab
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ void Adapter::GetGCEndpoint(libusb_device* device) {
|
||||||
sizeof(clear_payload), nullptr, 16);
|
sizeof(clear_payload), nullptr, 16);
|
||||||
|
|
||||||
adapter_thread_running = true;
|
adapter_thread_running = true;
|
||||||
adapter_input_thread = std::thread([=] { Read(); }); // Read input
|
adapter_input_thread = std::thread(&Adapter::Read, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
Adapter::~Adapter() {
|
Adapter::~Adapter() {
|
||||||
|
|
Loading…
Reference in a new issue