diff options
| author | 2015-10-10 14:42:17 -0400 | |
|---|---|---|
| committer | 2015-10-10 14:42:17 -0400 | |
| commit | 04325e5980a649bea58aad349fc04eaf403aba3a (patch) | |
| tree | dd23b69022f0b3df4a6c5542483c9f85258388ee /src/citra_qt/main.cpp | |
| parent | Merge pull request #1195 from Gareth422/secondary (diff) | |
| parent | CitraQt, SkyEye, Loader, VideoCore: Remove newlines in LOG_* calls. (diff) | |
| download | yuzu-04325e5980a649bea58aad349fc04eaf403aba3a.tar.gz yuzu-04325e5980a649bea58aad349fc04eaf403aba3a.tar.xz yuzu-04325e5980a649bea58aad349fc04eaf403aba3a.zip | |
Merge pull request #1194 from linkmauve/no-newline
Remove newlines in LOG_* calls
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) |