aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra_qt/bootmanager.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-07-13 14:16:36 -0700
committerGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-07-13 14:16:36 -0700
commit1fc0347d27e05d989689ea6d06add33b1195065e (patch)
tree374cc720a2b41e73864df00f84ded77c4ca51468 /src/citra_qt/bootmanager.h
parentbf80ae6a1ad328814df332c1136fe14e836053c6 (diff)
parent7ccce98389037f2bb9deac489af960bf991da0b6 (diff)
Merge pull request #924 from aroulin/qt-disassembly-step
Qt: Fix disassembly widget stepping
Diffstat (limited to 'src/citra_qt/bootmanager.h')
-rw-r--r--src/citra_qt/bootmanager.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/citra_qt/bootmanager.h b/src/citra_qt/bootmanager.h
index 47512431..1a1e0e6a 100644
--- a/src/citra_qt/bootmanager.h
+++ b/src/citra_qt/bootmanager.h
@@ -35,7 +35,10 @@ public:
* Steps the emulation thread by a single CPU instruction (if the CPU is not already running)
* @note This function is thread-safe
*/
- void ExecStep() { exec_step = true; }
+ void ExecStep() {
+ exec_step = true;
+ running_cv.notify_all();
+ }
/**
* Sets whether the emulation thread is running or not