From 8b097aa17e598fa1d1075ea1e7512925ec423524 Mon Sep 17 00:00:00 2001 From: N00byKing Date: Tue, 16 Jan 2018 17:32:27 +0100 Subject: Implement Pull #3333 from citra: citra_qt: Pause emulation on CoreError (#39) --- src/yuzu/bootmanager.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/yuzu/bootmanager.cpp') diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index a1e0cf575..843ac6ad7 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()); } -- cgit v1.2.3