summaryrefslogtreecommitdiff
path: root/src/citra_qt/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r--src/citra_qt/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index 2e3025295..5293263cd 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -158,18 +158,18 @@ GMainWindow::~GMainWindow()
158 158
159void GMainWindow::BootGame(std::string filename) 159void GMainWindow::BootGame(std::string filename)
160{ 160{
161 NOTICE_LOG(MASTER_LOG, "Citra starting...\n"); 161 LOG_INFO(Frontend, "Citra starting...\n");
162 System::Init(render_window); 162 System::Init(render_window);
163 163
164 if (Core::Init()) { 164 if (Core::Init()) {
165 ERROR_LOG(MASTER_LOG, "Core initialization failed, exiting..."); 165 LOG_CRITICAL(Frontend, "Core initialization failed, exiting...");
166 Core::Stop(); 166 Core::Stop();
167 exit(1); 167 exit(1);
168 } 168 }
169 169
170 // Load a game or die... 170 // Load a game or die...
171 if (Loader::ResultStatus::Success != Loader::LoadFile(filename)) { 171 if (Loader::ResultStatus::Success != Loader::LoadFile(filename)) {
172 ERROR_LOG(BOOT, "Failed to load ROM!"); 172 LOG_CRITICAL(Frontend, "Failed to load ROM!");
173 } 173 }
174 174
175 disasmWidget->Init(); 175 disasmWidget->Init();