diff options
author | James Rowe <jroweboy@gmail.com> | 2017-01-15 11:43:22 -0700 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2017-02-23 00:42:55 -0700 |
commit | b090422991a6a4d29401aca91829e271bf9519b8 (patch) | |
tree | ef312c8ce6f266aa7af43253b5ae1f3440f2de16 /src/citra_qt/main.cpp | |
parent | e971f17bb8ad4509be7170bce82d8e354c567201 (diff) |
Gui: Change title bar to include build name
Nightly builds now have "Citra Nightly" in the titlebar
Bleeding edge builds now have "Citra Bleeding Edge" in the titlebar
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r-- | src/citra_qt/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 513da8001..7a80af890 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -69,7 +69,8 @@ GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) { ConnectMenuEvents(); ConnectWidgetEvents(); - setWindowTitle(QString("Citra | %1-%2").arg(Common::g_scm_branch, Common::g_scm_desc)); + setWindowTitle(QString("Citra %1| %2-%3") + .arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc)); show(); game_list->PopulateAsync(UISettings::values.gamedir, UISettings::values.gamedir_deepscan); |