Addressed feedback: removed CMake hack in favor of building the necessary strings via the supplied title format
This commit is contained in:
parent
22b5d5211e
commit
6b512d78c9
3 changed files with 16 additions and 21 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue