From 6b512d78c994550ff653d519af7784023be5ebd2 Mon Sep 17 00:00:00 2001 From: SilverBeamx Date: Tue, 7 Apr 2020 22:41:45 +0200 Subject: Addressed feedback: removed CMake hack in favor of building the necessary strings via the supplied title format --- src/yuzu/main.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/yuzu/main.cpp') 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); -- cgit v1.2.3 From 863f7385dc6f7c232877bbabb5ff1068d06a7f96 Mon Sep 17 00:00:00 2001 From: SilverBeamx Date: Tue, 7 Apr 2020 22:59:09 +0200 Subject: Addressed feedback: switched to snake case and fixed clang-format errors --- src/yuzu/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/yuzu/main.cpp') diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 5cefb5d72..1717e06f9 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -207,11 +207,11 @@ GMainWindow::GMainWindow() const auto build_id = std::string(Common::g_build_id); const auto fmt = std::string(Common::g_title_bar_format_idle); - const auto yuzuBuildVersion = + const auto yuzu_build_version = 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, + LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", yuzu_build_version, Common::g_scm_branch, Common::g_scm_desc); #ifdef ARCHITECTURE_x86_64 LOG_INFO(Frontend, "Host CPU: {}", Common::GetCPUCaps().cpu_string); -- cgit v1.2.3