Browse Source

[qt] fix ci missing build_id (#2638)

Signed-off-by: lizzie <lizzie@eden-emu.dev>
Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/2638
Co-authored-by: lizzie <lizzie@eden-emu.dev>
Co-committed-by: lizzie <lizzie@eden-emu.dev>
pull/2642/head
lizzie 3 months ago
committed by crueter
parent
commit
020f1cdb1f
No known key found for this signature in database GPG Key ID: 425ACD2D4830EBC6
  1. 4
      src/yuzu/main.cpp

4
src/yuzu/main.cpp

@ -4204,8 +4204,8 @@ void GMainWindow::OnEmulatorUpdateAvailable() {
} }
#endif #endif
void GMainWindow::UpdateWindowTitle(std::string_view title_name, std::string_view title_version,
std::string_view gpu_vendor) {
void GMainWindow::UpdateWindowTitle(std::string_view title_name, std::string_view title_version, std::string_view gpu_vendor) {
static const std::string build_id = std::string{Common::g_build_id};
static const std::string yuzu_title = fmt::format("{} | {} | {}", static const std::string yuzu_title = fmt::format("{} | {} | {}",
std::string{Common::g_build_name}, std::string{Common::g_build_name},
std::string{Common::g_build_version}, std::string{Common::g_build_version},

Loading…
Cancel
Save