mirror of
https://github.com/starr-dusT/yuzu-mainline
synced 2024-03-05 21:12:25 -08:00
GCAdapter: only join worker thread if running & joinable
This commit is contained in:
parent
4524e1bd54
commit
d840ed90e1
@ -265,7 +265,9 @@ void Adapter::Reset() {
|
|||||||
if (adapter_thread_running) {
|
if (adapter_thread_running) {
|
||||||
adapter_thread_running = false;
|
adapter_thread_running = false;
|
||||||
}
|
}
|
||||||
|
if (adapter_input_thread.joinable()) {
|
||||||
adapter_input_thread.join();
|
adapter_input_thread.join();
|
||||||
|
}
|
||||||
|
|
||||||
adapter_controllers_status.fill(ControllerTypes::None);
|
adapter_controllers_status.fill(ControllerTypes::None);
|
||||||
get_origin.fill(true);
|
get_origin.fill(true);
|
||||||
|
Loading…
Reference in New Issue
Block a user