From e405887c0e886141a92b19566666d2a218e0bc87 Mon Sep 17 00:00:00 2001 From: Michael <15317421+ActualMandM@users.noreply.github.com> Date: Sat, 16 Nov 2024 16:02:02 -0800 Subject: [PATCH 1/3] video_patches: don't adjust CSD aspect if UIScaleMode is Stretch --- UnleashedRecomp/patches/video_patches.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UnleashedRecomp/patches/video_patches.cpp b/UnleashedRecomp/patches/video_patches.cpp index 3bf6ebe5..d3e1f0d2 100644 --- a/UnleashedRecomp/patches/video_patches.cpp +++ b/UnleashedRecomp/patches/video_patches.cpp @@ -41,6 +41,9 @@ void CameraBoostAspectRatioMidAsmHook(PPCRegister& r31, PPCRegister& f0) void CSDAspectRatioMidAsmHook(PPCRegister& f1, PPCRegister& f2) { + if (Config::UIScaleMode == EUIScaleMode::Stretch) + return; + auto newAspectRatio = (float)Window::s_width / (float)Window::s_height; if (newAspectRatio > m_baseAspectRatio) From 1117cbe33e3ff54d8a18db0c28e6444746a7da05 Mon Sep 17 00:00:00 2001 From: Hyper <34012267+hyperbx@users.noreply.github.com> Date: Sun, 17 Nov 2024 15:59:12 +0000 Subject: [PATCH 2/3] window: make Japanese title uppercase --- UnleashedRecomp/ui/window.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnleashedRecomp/ui/window.h b/UnleashedRecomp/ui/window.h index cab4fbf5..b560981e 100644 --- a/UnleashedRecomp/ui/window.h +++ b/UnleashedRecomp/ui/window.h @@ -63,7 +63,7 @@ public: if (!title) { title = Config::Language == ELanguage::Japanese - ? "Sonic World Adventure" + ? "SONIC WORLD ADVENTURE" : "SONIC UNLEASHED"; } From 2fd26cfd8001ea490f4bd1d29d1de360dc5a673a Mon Sep 17 00:00:00 2001 From: Skyth <19259897+blueskythlikesclouds@users.noreply.github.com> Date: Sun, 17 Nov 2024 21:01:00 +0300 Subject: [PATCH 3/3] Fix freeze in latest Clang version. --- thirdparty/PowerRecomp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thirdparty/PowerRecomp b/thirdparty/PowerRecomp index a7c970d3..d8676283 160000 --- a/thirdparty/PowerRecomp +++ b/thirdparty/PowerRecomp @@ -1 +1 @@ -Subproject commit a7c970d32497b7f1624a2871fdd67435d724b1ef +Subproject commit d8676283fd1e8990b415cc0e4810c6db895b9fba