Przeglądaj źródła

Fixed capitalization issues

Gareth Poole 11 lat temu
rodzic
commit
1c074ced94
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      src/citra_qt/main.cpp

+ 2 - 2
src/citra_qt/main.cpp

@@ -128,10 +128,10 @@ GMainWindow::~GMainWindow()
 
 void GMainWindow::BootGame(std::string filename)
 {
-    NOTICE_LOG(MASTER_LOG, "citra starting...\n");
+    NOTICE_LOG(MASTER_LOG, "Citra starting...\n");
 
     if (Core::Init()) {
-        ERROR_LOG(MASTER_LOG, "core initialization failed, exiting...");
+        ERROR_LOG(MASTER_LOG, "Core initialization failed, exiting...");
         Core::Stop();
         exit(1);
     }