diff options
| author | 2015-10-09 22:13:54 +0100 | |
|---|---|---|
| committer | 2015-10-09 22:14:56 +0100 | |
| commit | 14af5919ba7c0888e264add68053e2a330fe2fd3 (patch) | |
| tree | b88320d106988ac5ac660e7a8d76f1a56ae2abeb /src/citra_qt/main.cpp | |
| parent | Merge pull request #1189 from archshift/game-list-toggle-window (diff) | |
| download | yuzu-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.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) | |||
| 240 | } | 240 | } |
| 241 | 241 | ||
| 242 | void GMainWindow::BootGame(const std::string& filename) { | 242 | void 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) |