diff options
| author | 2018-03-22 18:26:43 +0800 | |
|---|---|---|
| committer | 2018-03-22 18:26:43 +0800 | |
| commit | 47f96fe13ae54d17c83de4e565612279530c957e (patch) | |
| tree | 27627600dfb28da1871a2a548777337787165d28 /src | |
| parent | Logging: Create logging macros based on fmtlib (diff) | |
| download | yuzu-47f96fe13ae54d17c83de4e565612279530c957e.tar.gz yuzu-47f96fe13ae54d17c83de4e565612279530c957e.tar.xz yuzu-47f96fe13ae54d17c83de4e565612279530c957e.zip | |
Change "yuzu starting..." to be logged with the new macro
Just as a proof that it works
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index e5252abdc..9b2047e04 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -387,7 +387,7 @@ bool GMainWindow::LoadROM(const QString& filename) { | |||
| 387 | } | 387 | } |
| 388 | 388 | ||
| 389 | void GMainWindow::BootGame(const QString& filename) { | 389 | void GMainWindow::BootGame(const QString& filename) { |
| 390 | LOG_INFO(Frontend, "yuzu starting..."); | 390 | NGLOG_INFO(Frontend, "yuzu starting..."); |
| 391 | StoreRecentFile(filename); // Put the filename on top of the list | 391 | StoreRecentFile(filename); // Put the filename on top of the list |
| 392 | 392 | ||
| 393 | if (!LoadROM(filename)) | 393 | if (!LoadROM(filename)) |