diff options
author | SilverBeamx <molto.falso@gmail.com> | 2020-04-07 22:59:09 +0200 |
---|---|---|
committer | SilverBeamx <molto.falso@gmail.com> | 2020-04-07 22:59:09 +0200 |
commit | 863f7385dc6f7c232877bbabb5ff1068d06a7f96 (patch) | |
tree | 4697de74596143ef07f6c8c9dd7e252bda24d24a /src/yuzu/main.cpp | |
parent | 5a66ca4697d5337d591a6a57ce1bb76db5f6fc1f (diff) |
Addressed feedback: switched to snake case and fixed clang-format errors
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 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); |