GCAdapter: only join worker thread if running & joinable

pull/8/head
Brian J. Tarricone 5 years ago
parent 4524e1bd54
commit d840ed90e1

@ -265,7 +265,9 @@ void Adapter::Reset() {
if (adapter_thread_running) {
adapter_thread_running = false;
}
adapter_input_thread.join();
if (adapter_input_thread.joinable()) {
adapter_input_thread.join();
}
adapter_controllers_status.fill(ControllerTypes::None);
get_origin.fill(true);

Loading…
Cancel
Save