[desktop] Capitalize app name
All checks were successful
eden-build / source (push) Successful in 6m39s
eden-build / linux (push) Successful in 26m32s
eden-build / windows (msvc) (push) Successful in 30m17s
eden-build / android (push) Successful in 33m25s

Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
crueter 2025-07-18 17:48:26 -04:00
parent 7cb8a1acd3
commit d42d379733
No known key found for this signature in database
GPG key ID: 425ACD2D4830EBC6
2 changed files with 4 additions and 4 deletions

View file

@ -16,9 +16,9 @@ AboutDialog::AboutDialog(QWidget* parent)
std::string yuzu_build;
if (Common::g_is_dev_build) {
yuzu_build = fmt::format("eden Nightly | {}-{}", description, build_id);
yuzu_build = fmt::format("Eden Nightly | {}-{}", description, build_id);
} else {
yuzu_build = fmt::format("eden | {}", description);
yuzu_build = fmt::format("Eden | {}", description);
}
const auto override_build = fmt::format(fmt::runtime(

View file

@ -4902,9 +4902,9 @@ void GMainWindow::UpdateWindowTitle(std::string_view title_name, std::string_vie
std::string yuzu_title;
if (Common::g_is_dev_build) {
yuzu_title = fmt::format("eden Nightly | {}-{}", description, build_id);
yuzu_title = fmt::format("Eden Nightly | {}-{}", description, build_id);
} else {
yuzu_title = fmt::format("eden | {}", description);
yuzu_title = fmt::format("Eden | {}", description);
}
const auto override_title =