From 1c074ced9446a8027753fef1a5917dc3d70d3e69 Mon Sep 17 00:00:00 2001 From: Gareth Poole <510razor@gmail.com> Date: Sat, 1 Nov 2014 23:04:38 -0400 Subject: [PATCH] Fixed capitalization issues --- src/citra_qt/main.cpp | 4 ++-- 1 file 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() 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); }