diff options
author | N00byKing <N00byKing@users.noreply.github.com> | 2018-01-16 17:32:27 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-01-16 11:32:27 -0500 |
commit | 8b097aa17e598fa1d1075ea1e7512925ec423524 (patch) | |
tree | 200868128f3e0d54e5bb32cee0eb62a9461f584b /src/yuzu/bootmanager.cpp | |
parent | d81879186674ed3732ff3539937a9ac0fb45b585 (diff) |
Implement Pull #3333 from citra: citra_qt: Pause emulation on CoreError (#39)
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
-rw-r--r-- | src/yuzu/bootmanager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index a1e0cf575b..843ac6ad7a 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -40,6 +40,7 @@ void EmuThread::run() { Core::System::ResultStatus result = Core::System::GetInstance().RunLoop(); if (result != Core::System::ResultStatus::Success) { + this->SetRunning(false); emit ErrorThrown(result, Core::System::GetInstance().GetStatusDetails()); } |