Merge branch 'main' into options-menu

This commit is contained in:
Hyper 2024-11-17 18:33:38 +00:00
commit 104da0218b
3 changed files with 5 additions and 2 deletions

View file

@ -41,6 +41,9 @@ void CameraBoostAspectRatioMidAsmHook(PPCRegister& r31, PPCRegister& f0)
void CSDAspectRatioMidAsmHook(PPCRegister& f1, PPCRegister& f2) void CSDAspectRatioMidAsmHook(PPCRegister& f1, PPCRegister& f2)
{ {
if (Config::UIScaleMode == EUIScaleMode::Stretch)
return;
auto newAspectRatio = (float)Window::s_width / (float)Window::s_height; auto newAspectRatio = (float)Window::s_width / (float)Window::s_height;
if (newAspectRatio > m_baseAspectRatio) if (newAspectRatio > m_baseAspectRatio)

View file

@ -63,7 +63,7 @@ public:
if (!title) if (!title)
{ {
title = Config::Language == ELanguage::Japanese title = Config::Language == ELanguage::Japanese
? "Sonic World Adventure" ? "SONIC WORLD ADVENTURE"
: "SONIC UNLEASHED"; : "SONIC UNLEASHED";
} }

@ -1 +1 @@
Subproject commit a7c970d32497b7f1624a2871fdd67435d724b1ef Subproject commit d8676283fd1e8990b415cc0e4810c6db895b9fba