mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 02:55:45 +00:00
[desktop] Capitalize app name
Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
parent
7cb8a1acd3
commit
d42d379733
2 changed files with 4 additions and 4 deletions
|
@ -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 =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue