diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-10-09 22:13:54 +0100 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-10-09 22:14:56 +0100 |
commit | 14af5919ba7c0888e264add68053e2a330fe2fd3 (patch) | |
tree | b88320d106988ac5ac660e7a8d76f1a56ae2abeb /src/citra_qt/main.cpp | |
parent | 7c747c8c3303458027e7531cb8f50bbd46fc9c1a (diff) |
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.cpp | 2 |
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) } void GMainWindow::BootGame(const std::string& filename) { - LOG_INFO(Frontend, "Citra starting...\n"); + LOG_INFO(Frontend, "Citra starting..."); // Shutdown previous session if the emu thread is still active... if (emu_thread != nullptr) |