Browse Source
[desktop] Capitalize app name
Signed-off-by: crueter <crueter@eden-emu.dev>
pull/79/head
crueter
5 months ago
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
2 changed files with
4 additions and
4 deletions
-
src/yuzu/about_dialog.cpp
-
src/yuzu/main.cpp
|
|
|
@ -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( |
|
|
|
|
|
|
|
@ -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 = |
|
|
|
|