소스 검색

gc_adapter: Resolve C++20 deprecation warning

Lioncash 6 년 전
부모
커밋
ac7e4e2cab
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/input_common/gcadapter/gc_adapter.cpp

+ 1 - 1
src/input_common/gcadapter/gc_adapter.cpp

@@ -254,7 +254,7 @@ void Adapter::GetGCEndpoint(libusb_device* device) {
                               sizeof(clear_payload), nullptr, 16);
 
     adapter_thread_running = true;
-    adapter_input_thread = std::thread([=] { Read(); }); // Read input
+    adapter_input_thread = std::thread(&Adapter::Read, this);
 }
 
 Adapter::~Adapter() {