From 4048b54ef72b869fe380381f02107a133a541bbf Mon Sep 17 00:00:00 2001 From: Pengfei Zhu Date: Sat, 8 Sep 2018 19:10:50 +0800 Subject: [PATCH] yuzu: fix title bar display Previously the version number got hidden after starting a game. --- src/yuzu/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 2cd282a51..811e7cd3f 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -608,7 +608,7 @@ void GMainWindow::BootGame(const QString& filename) { } setWindowTitle(QString("yuzu %1| %4 | %2-%3") - .arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc, + .arg(Common::g_build_fullname, Common::g_scm_branch, Common::g_scm_desc, QString::fromStdString(title_name))); render_window->show(); @@ -643,7 +643,7 @@ void GMainWindow::ShutdownGame() { game_list->show(); game_list->setFilterFocus(); setWindowTitle(QString("yuzu %1| %2-%3") - .arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc)); + .arg(Common::g_build_fullname, Common::g_scm_branch, Common::g_scm_desc)); // Disable status bar updates status_bar_update_timer.stop();