summaryrefslogtreecommitdiff
path: root/src/yuzu/main.cpp
diff options
context:
space:
mode:
authorSilverBeamx <molto.falso@gmail.com>2020-04-07 22:41:45 +0200
committerSilverBeamx <molto.falso@gmail.com>2020-04-07 22:41:45 +0200
commit6b512d78c994550ff653d519af7784023be5ebd2 (patch)
tree1036a2ce099a1c097e8dca9ab09bd3306e03e819 /src/yuzu/main.cpp
parent22b5d5211e125f8f59c29caf21f16e6fc5d912ab (diff)
Addressed feedback: removed CMake hack in favor of building the necessary strings via the supplied title format
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r--src/yuzu/main.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 940f24dc8..5cefb5d72 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -205,7 +205,13 @@ GMainWindow::GMainWindow()
ConnectMenuEvents();
ConnectWidgetEvents();
- LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", Common::g_build_fullname, Common::g_scm_branch,
+ const auto build_id = std::string(Common::g_build_id);
+ const auto fmt = std::string(Common::g_title_bar_format_idle);
+ const auto yuzuBuildVersion =
+ fmt::format(fmt.empty() ? "yuzu Development Build" : fmt, std::string{}, std::string{},
+ std::string{}, std::string{}, std::string{}, build_id);
+
+ LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", yuzuBuildVersion, Common::g_scm_branch,
Common::g_scm_desc);
#ifdef ARCHITECTURE_x86_64
LOG_INFO(Frontend, "Host CPU: {}", Common::GetCPUCaps().cpu_string);