mirror of
https://github.com/hedge-dev/UnleashedRecomp
synced 2026-06-09 04:40:26 -04:00
Added code to force the alternate game title (#1249)
This commit is contained in:
@@ -282,7 +282,12 @@ const char* GameWindow::GetTitle()
|
||||
{
|
||||
if (Config::UseOfficialTitleOnTitleBar)
|
||||
{
|
||||
return Config::Language == ELanguage::Japanese
|
||||
auto isSWA = Config::Language == ELanguage::Japanese;
|
||||
|
||||
if (Config::UseAlternateTitle)
|
||||
isSWA = !isSWA;
|
||||
|
||||
return isSWA
|
||||
? "SONIC WORLD ADVENTURE"
|
||||
: "SONIC UNLEASHED";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user