diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-08 22:03:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-08 22:03:25 +0200 |
commit | deff28d3c0f0af291946fe55f3f63af1cf83b0b1 (patch) | |
tree | 855002bf722af6da138a9365743ead419e6dda4e | |
parent | Merge pull request #1267 from MerryMage/audio_out (diff) | |
parent | yuzu: fix title bar display (diff) | |
download | yuzu-deff28d3c0f0af291946fe55f3f63af1cf83b0b1.tar yuzu-deff28d3c0f0af291946fe55f3f63af1cf83b0b1.tar.gz yuzu-deff28d3c0f0af291946fe55f3f63af1cf83b0b1.tar.bz2 yuzu-deff28d3c0f0af291946fe55f3f63af1cf83b0b1.tar.lz yuzu-deff28d3c0f0af291946fe55f3f63af1cf83b0b1.tar.xz yuzu-deff28d3c0f0af291946fe55f3f63af1cf83b0b1.tar.zst yuzu-deff28d3c0f0af291946fe55f3f63af1cf83b0b1.zip |
-rw-r--r-- | src/yuzu/main.cpp | 4 |
1 files 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(); |