diff options
author | James Rowe <jroweboy@gmail.com> | 2015-05-16 19:56:00 +0200 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2015-05-18 16:15:57 +0200 |
commit | a406207cd81c9fc3218f29394e11e7711817c458 (patch) | |
tree | 87bf96769c74b48468144e9ab238688ee9370434 /src/citra_qt/bootmanager.cpp | |
parent | Merge pull request #781 from archshift/delete (diff) | |
download | yuzu-a406207cd81c9fc3218f29394e11e7711817c458.tar yuzu-a406207cd81c9fc3218f29394e11e7711817c458.tar.gz yuzu-a406207cd81c9fc3218f29394e11e7711817c458.tar.bz2 yuzu-a406207cd81c9fc3218f29394e11e7711817c458.tar.lz yuzu-a406207cd81c9fc3218f29394e11e7711817c458.tar.xz yuzu-a406207cd81c9fc3218f29394e11e7711817c458.tar.zst yuzu-a406207cd81c9fc3218f29394e11e7711817c458.zip |
Diffstat (limited to 'src/citra_qt/bootmanager.cpp')
-rw-r--r-- | src/citra_qt/bootmanager.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/citra_qt/bootmanager.cpp b/src/citra_qt/bootmanager.cpp index d3df289f8..ab9403007 100644 --- a/src/citra_qt/bootmanager.cpp +++ b/src/citra_qt/bootmanager.cpp @@ -59,6 +59,9 @@ void EmuThread::run() { yieldCurrentThread(); was_active = false; + } else { + std::unique_lock<std::mutex> lock(running_mutex); + running_cv.wait(lock, [this]{ return IsRunning() || stop_run; }); } } |