game_window: change window title to "Unleashed Recompiled"

This commit is contained in:
Hyper
2025-01-18 23:51:00 +00:00
parent 513a66657f
commit e7919da1bd
2 changed files with 11 additions and 4 deletions
+8 -3
View File
@@ -298,9 +298,14 @@ void GameWindow::SetIcon(bool isNight)
const char* GameWindow::GetTitle()
{
return Config::Language == ELanguage::Japanese
? "SONIC WORLD ADVENTURE"
: "SONIC UNLEASHED";
if (Config::UseOfficialTitleOnTitleBar)
{
return Config::Language == ELanguage::Japanese
? "SONIC WORLD ADVENTURE"
: "SONIC UNLEASHED";
}
return "Unleashed Recompiled";
}
void GameWindow::SetTitle(const char* title)