diff options
| author | 2017-06-02 22:24:29 -0400 | |
|---|---|---|
| committer | 2017-06-02 22:24:29 -0400 | |
| commit | 81449f025a190cd9f931d73cf959ddbfebff497a (patch) | |
| tree | 24a15888dd6ebc515a09eaf00623fa23e2d4665d /src/citra_qt/bootmanager.cpp | |
| parent | Merge pull request #2722 from wwylele/cam-ipc-helper (diff) | |
| parent | Addressed Bunnei's review comments, and made some other tweaks: (diff) | |
| download | yuzu-81449f025a190cd9f931d73cf959ddbfebff497a.tar.gz yuzu-81449f025a190cd9f931d73cf959ddbfebff497a.tar.xz yuzu-81449f025a190cd9f931d73cf959ddbfebff497a.zip | |
Merge pull request #2611 from TheKoopaKingdom/missing-file-dialogs
Display QMessageBox Dialogs For Errors
Diffstat (limited to 'src/citra_qt/bootmanager.cpp')
| -rw-r--r-- | src/citra_qt/bootmanager.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/citra_qt/bootmanager.cpp b/src/citra_qt/bootmanager.cpp index 06b62f44c..a8a4aed8b 100644 --- a/src/citra_qt/bootmanager.cpp +++ b/src/citra_qt/bootmanager.cpp | |||
| @@ -37,7 +37,10 @@ void EmuThread::run() { | |||
| 37 | if (!was_active) | 37 | if (!was_active) |
| 38 | emit DebugModeLeft(); | 38 | emit DebugModeLeft(); |
| 39 | 39 | ||
| 40 | Core::System::GetInstance().RunLoop(); | 40 | Core::System::ResultStatus result = Core::System::GetInstance().RunLoop(); |
| 41 | if (result != Core::System::ResultStatus::Success) { | ||
| 42 | emit ErrorThrown(result, Core::System::GetInstance().GetStatusDetails()); | ||
| 43 | } | ||
| 41 | 44 | ||
| 42 | was_active = running || exec_step; | 45 | was_active = running || exec_step; |
| 43 | if (!was_active && !stop_run) | 46 | if (!was_active && !stop_run) |