From 03fbb2f1ee03c8d77fd0aea397759b8f8857f19d Mon Sep 17 00:00:00 2001 From: Hyper <34012267+hyperbx@users.noreply.github.com> Date: Sun, 20 Oct 2024 14:02:31 +0100 Subject: [PATCH] Fix Eggmanland using incorrect exit transition --- UnleashedRecomp/game.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/UnleashedRecomp/game.cpp b/UnleashedRecomp/game.cpp index 54654d1..b3c7c5c 100644 --- a/UnleashedRecomp/game.cpp +++ b/UnleashedRecomp/game.cpp @@ -128,7 +128,7 @@ PPC_FUNC(sub_824DCF38) 3 - Tails Electric NOW LOADING w/ Info (requires context) 4 - Arrows In/Out 5 - NOW LOADING - 6 - Theatre Mode + 6 - Event Gallery 7 - NOW LOADING 8 - Black Screen */ @@ -139,8 +139,8 @@ PPC_FUNC(sub_824DCF38) if (m_pStageID) { /* Fix restarting Eggmanland as the Werehog - erroneously using the Theatre Mode transition. */ - if (!strcmp(m_pStageID, "Act_EggmanLand")) + erroneously using the Event Gallery transition. */ + if (ctx.r4.u32 == 6 && !strcmp(m_pStageID, "Act_EggmanLand")) ctx.r4.u32 = 5; }