summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Gareth Poole2014-11-01 23:04:38 -0400
committerGravatar Gareth Poole2014-11-01 23:08:06 -0400
commit1c074ced9446a8027753fef1a5917dc3d70d3e69 (patch)
treec87df154ec59a4dac2fa15796c393c88d8e39470 /src
parentMerge pull request #135 from purpasmart96/master (diff)
downloadyuzu-1c074ced9446a8027753fef1a5917dc3d70d3e69.tar.gz
yuzu-1c074ced9446a8027753fef1a5917dc3d70d3e69.tar.xz
yuzu-1c074ced9446a8027753fef1a5917dc3d70d3e69.zip
Fixed capitalization issues
Diffstat (limited to 'src')
-rw-r--r--src/citra_qt/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index bac6a6bb8..153712273 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -128,10 +128,10 @@ GMainWindow::~GMainWindow()
128 128
129void GMainWindow::BootGame(std::string filename) 129void GMainWindow::BootGame(std::string filename)
130{ 130{
131 NOTICE_LOG(MASTER_LOG, "citra starting...\n"); 131 NOTICE_LOG(MASTER_LOG, "Citra starting...\n");
132 132
133 if (Core::Init()) { 133 if (Core::Init()) {
134 ERROR_LOG(MASTER_LOG, "core initialization failed, exiting..."); 134 ERROR_LOG(MASTER_LOG, "Core initialization failed, exiting...");
135 Core::Stop(); 135 Core::Stop();
136 exit(1); 136 exit(1);
137 } 137 }