From 09c116a310bd7e1558781952d46edcdc33bf42c7 Mon Sep 17 00:00:00 2001 From: Icebound777 Date: Mon, 6 Oct 2025 18:51:31 +0200 Subject: [PATCH] fix(decomp): token race flag not cleared properly --- decompile/General/222/222_Full.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/decompile/General/222/222_Full.c b/decompile/General/222/222_Full.c index bffc04951..2402c63a9 100644 --- a/decompile/General/222/222_Full.c +++ b/decompile/General/222/222_Full.c @@ -415,7 +415,8 @@ void DECOMP_AA_EndEvent_DrawMenu(void) RECTMENU_ClearInput(); sdata->Loading.OnBegin.AddBitsConfig0 |= ADVENTURE_ARENA; - sdata->Loading.OnBegin.RemBitsConfig0 |= (ADVENTURE_BOSS | TOKEN_RACE); + sdata->Loading.OnBegin.RemBitsConfig0 |= ADVENTURE_BOSS; + sdata->Loading.OnBegin.RemBitsConfig8 |= TOKEN_RACE; // If you are in boss mode if (gGT->gameMode1 < 0)