diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-07 12:05:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-07 12:05:32 -0400 |
commit | c08c5d346ac8bf0c8571ec68772851a76e27e7f1 (patch) | |
tree | bad988c1423f1d92ffb907d98bd8d5666e93dbc9 /src/yuzu/main.cpp | |
parent | a164b413fa479ec1ab0322044ca5ce6c16708e3a (diff) | |
parent | 9382414b2036751f98d8e65a25f00517d9f46436 (diff) |
Merge pull request #1201 from CaptV0rt3x/titlebar
Port #3804 from Citra - Better Title Bar Display
Diffstat (limited to 'src/yuzu/main.cpp')
-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 dbe5bd8a4..cb8135c42 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -136,11 +136,11 @@ GMainWindow::GMainWindow() ConnectMenuEvents(); ConnectWidgetEvents(); - LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", Common::g_build_name, Common::g_scm_branch, + LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", Common::g_build_fullname, Common::g_scm_branch, Common::g_scm_desc); 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)); show(); // Necessary to load titles from nand in gamelist. |