summaryrefslogtreecommitdiff
path: root/src/core/core_timing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core_timing.cpp')
-rw-r--r--src/core/core_timing.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/core_timing.cpp b/src/core/core_timing.cpp
index cc32a853b..5a7abcfca 100644
--- a/src/core/core_timing.cpp
+++ b/src/core/core_timing.cpp
@@ -77,6 +77,9 @@ void CoreTiming::SyncPause(bool is_paused) {
77 return; 77 return;
78 } 78 }
79 Pause(is_paused); 79 Pause(is_paused);
80 if (!is_paused) {
81 pause_event.Set();
82 }
80 event.Set(); 83 event.Set();
81 while (paused_set != is_paused) 84 while (paused_set != is_paused)
82 ; 85 ;
@@ -197,6 +200,9 @@ void CoreTiming::ThreadLoop() {
197 wait_set = false; 200 wait_set = false;
198 } 201 }
199 paused_set = true; 202 paused_set = true;
203 clock->Pause(true);
204 pause_event.Wait();
205 clock->Pause(false);
200 } 206 }
201} 207}
202 208