summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Lim Wee Soong <weesoong.lim@gmail.com>2018-03-22 11:26:43 +0100
committerDaniel Lim Wee Soong <weesoong.lim@gmail.com>2018-03-22 11:26:43 +0100
commit47f96fe13ae54d17c83de4e565612279530c957e (patch)
tree27627600dfb28da1871a2a548777337787165d28
parentLogging: Create logging macros based on fmtlib (diff)
downloadyuzu-47f96fe13ae54d17c83de4e565612279530c957e.tar
yuzu-47f96fe13ae54d17c83de4e565612279530c957e.tar.gz
yuzu-47f96fe13ae54d17c83de4e565612279530c957e.tar.bz2
yuzu-47f96fe13ae54d17c83de4e565612279530c957e.tar.lz
yuzu-47f96fe13ae54d17c83de4e565612279530c957e.tar.xz
yuzu-47f96fe13ae54d17c83de4e565612279530c957e.tar.zst
yuzu-47f96fe13ae54d17c83de4e565612279530c957e.zip
-rw-r--r--src/yuzu/main.cpp2
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) {
}
void GMainWindow::BootGame(const QString& filename) {
- LOG_INFO(Frontend, "yuzu starting...");
+ NGLOG_INFO(Frontend, "yuzu starting...");
StoreRecentFile(filename); // Put the filename on top of the list
if (!LoadROM(filename))