summaryrefslogtreecommitdiff
path: root/src/citra_qt/main.cpp
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2015-10-09 22:13:54 +0100
committerGravatar Emmanuel Gil Peyrot2015-10-09 22:14:56 +0100
commit14af5919ba7c0888e264add68053e2a330fe2fd3 (patch)
treeb88320d106988ac5ac660e7a8d76f1a56ae2abeb /src/citra_qt/main.cpp
parentMerge pull request #1189 from archshift/game-list-toggle-window (diff)
downloadyuzu-14af5919ba7c0888e264add68053e2a330fe2fd3.tar.gz
yuzu-14af5919ba7c0888e264add68053e2a330fe2fd3.tar.xz
yuzu-14af5919ba7c0888e264add68053e2a330fe2fd3.zip
CitraQt, SkyEye, Loader, VideoCore: Remove newlines in LOG_* calls.
The LOG_* function itself already appends one.
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r--src/citra_qt/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index bf010a2ba..038bfa07d 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -240,7 +240,7 @@ void GMainWindow::OnDisplayTitleBars(bool show)
240} 240}
241 241
242void GMainWindow::BootGame(const std::string& filename) { 242void GMainWindow::BootGame(const std::string& filename) {
243 LOG_INFO(Frontend, "Citra starting...\n"); 243 LOG_INFO(Frontend, "Citra starting...");
244 244
245 // Shutdown previous session if the emu thread is still active... 245 // Shutdown previous session if the emu thread is still active...
246 if (emu_thread != nullptr) 246 if (emu_thread != nullptr)