summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2014-11-02 17:12:16 -0500
committerGravatar bunnei2014-11-02 17:12:16 -0500
commitbe1fb2c5f29fe049f88558b9355702f5bb150832 (patch)
tree0d406ea88bb84ddf1cf8a54d905f1d0caceac0ee /src
parentMerge pull request #166 from bunnei/skyeye-vfp-fixes (diff)
parentFixed capitalization issues (diff)
downloadyuzu-be1fb2c5f29fe049f88558b9355702f5bb150832.tar.gz
yuzu-be1fb2c5f29fe049f88558b9355702f5bb150832.tar.xz
yuzu-be1fb2c5f29fe049f88558b9355702f5bb150832.zip
Merge pull request #179 from Gareth422/myradicalbranch
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 }