summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/bootmanager.h
diff options
context:
space:
mode:
authoraroulin <andy.roulin@epfl.ch>2015-07-13 17:27:12 +0200
committeraroulin <andy.roulin@epfl.ch>2015-07-13 17:27:12 +0200
commit7ccce98389037f2bb9deac489af960bf991da0b6 (patch)
tree6def78a458d50db7914998c1655c72440ece25e8 /src/citra_qt/bootmanager.h
parentMerge pull request #859 from Apology11/master (diff)
downloadyuzu-7ccce98389037f2bb9deac489af960bf991da0b6.tar
yuzu-7ccce98389037f2bb9deac489af960bf991da0b6.tar.gz
yuzu-7ccce98389037f2bb9deac489af960bf991da0b6.tar.bz2
yuzu-7ccce98389037f2bb9deac489af960bf991da0b6.tar.lz
yuzu-7ccce98389037f2bb9deac489af960bf991da0b6.tar.xz
yuzu-7ccce98389037f2bb9deac489af960bf991da0b6.tar.zst
yuzu-7ccce98389037f2bb9deac489af960bf991da0b6.zip
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 475124319..1a1e0e6a5 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