mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
synced 2025-12-17 21:12:41 +00:00
HostTiming: Pause the hardware clock on pause.
This commit is contained in:
@@ -77,6 +77,9 @@ void CoreTiming::SyncPause(bool is_paused) {
|
||||
return;
|
||||
}
|
||||
Pause(is_paused);
|
||||
if (!is_paused) {
|
||||
pause_event.Set();
|
||||
}
|
||||
event.Set();
|
||||
while (paused_set != is_paused)
|
||||
;
|
||||
@@ -197,6 +200,9 @@ void CoreTiming::ThreadLoop() {
|
||||
wait_set = false;
|
||||
}
|
||||
paused_set = true;
|
||||
clock->Pause(true);
|
||||
pause_event.Wait();
|
||||
clock->Pause(false);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user