diff options
| author | 2019-09-21 17:43:18 +1000 | |
|---|---|---|
| committer | 2019-09-21 17:43:18 +1000 | |
| commit | b4db662053f98cb76d81f43e268f8f9104e523ea (patch) | |
| tree | 56f8f034d45c880f416e23c3da908c901cedba58 /src | |
| parent | Log the current title id and game name which is booting (diff) | |
| download | yuzu-b4db662053f98cb76d81f43e268f8f9104e523ea.tar.gz yuzu-b4db662053f98cb76d81f43e268f8f9104e523ea.tar.xz yuzu-b4db662053f98cb76d81f43e268f8f9104e523ea.zip | |
Swapped TID and Game name to make it easier to parse
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 9a42a998a..9d2072e14 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -976,7 +976,7 @@ void GMainWindow::BootGame(const QString& filename) { | |||
| 976 | if (title_name.empty()) | 976 | if (title_name.empty()) |
| 977 | title_name = FileUtil::GetFilename(filename.toStdString()); | 977 | title_name = FileUtil::GetFilename(filename.toStdString()); |
| 978 | } | 978 | } |
| 979 | LOG_INFO(Frontend, "Booting game: \"{}\" | {:016X}", title_name, title_id); | 979 | LOG_INFO(Frontend, "Booting game: {:016X} | {}", title_id, title_name); |
| 980 | UpdateWindowTitle(QString::fromStdString(title_name)); | 980 | UpdateWindowTitle(QString::fromStdString(title_name)); |
| 981 | 981 | ||
| 982 | loading_screen->Prepare(Core::System::GetInstance().GetAppLoader()); | 982 | loading_screen->Prepare(Core::System::GetInstance().GetAppLoader()); |