summaryrefslogtreecommitdiff
path: root/src/citra_qt/bootmanager.cpp
diff options
context:
space:
mode:
authorGravatar TheKoopaKingdom2017-04-13 01:15:23 -0400
committerGravatar TheKoopaKingdom2017-06-02 18:28:14 -0400
commit0409bdfea5ea046e3d040ab494b8a0764fd35424 (patch)
tree94540c98e22d04a8a1d6ca4d24ac3ae429ed3d97 /src/citra_qt/bootmanager.cpp
parentAdded message to status bar to show core errors ignored by the user. (diff)
downloadyuzu-0409bdfea5ea046e3d040ab494b8a0764fd35424.tar.gz
yuzu-0409bdfea5ea046e3d040ab494b8a0764fd35424.tar.xz
yuzu-0409bdfea5ea046e3d040ab494b8a0764fd35424.zip
Optimized messages that were repetitive and added ability for core errors to specify more details optionally.
Diffstat (limited to 'src/citra_qt/bootmanager.cpp')
-rw-r--r--src/citra_qt/bootmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/bootmanager.cpp b/src/citra_qt/bootmanager.cpp
index 0fdf0c600..a8a4aed8b 100644
--- a/src/citra_qt/bootmanager.cpp
+++ b/src/citra_qt/bootmanager.cpp
@@ -39,7 +39,7 @@ void EmuThread::run() {
39 39
40 Core::System::ResultStatus result = Core::System::GetInstance().RunLoop(); 40 Core::System::ResultStatus result = Core::System::GetInstance().RunLoop();
41 if (result != Core::System::ResultStatus::Success) { 41 if (result != Core::System::ResultStatus::Success) {
42 emit ErrorThrown(result); 42 emit ErrorThrown(result, Core::System::GetInstance().GetStatusDetails());
43 } 43 }
44 44
45 was_active = running || exec_step; 45 was_active = running || exec_step;