check if rando for quest kaleido menu panel (#6231)

This commit is contained in:
anthony-barricelli
2026-02-04 13:59:52 -05:00
committed by GitHub
parent c021a0e8a2
commit 2656c20f71

View File

@@ -4278,7 +4278,8 @@ void KaleidoScope_Update(PlayState* play) {
Interface_ChangeAlpha(50); Interface_ChangeAlpha(50);
pauseCtx->unk_1EC = 0; pauseCtx->unk_1EC = 0;
pauseCtx->state = 7; pauseCtx->state = 7;
} else if (CHECK_BTN_ALL(input->press.button, BTN_CUP) && pauseCtx->pageIndex == PAUSE_QUEST) { } else if (IS_RANDO && CHECK_BTN_ALL(input->press.button, BTN_CUP) &&
pauseCtx->pageIndex == PAUSE_QUEST) {
Audio_PlaySoundGeneral(NA_SE_SY_DECIDE, &gSfxDefaultPos, 4, &gSfxDefaultFreqAndVolScale, Audio_PlaySoundGeneral(NA_SE_SY_DECIDE, &gSfxDefaultPos, 4, &gSfxDefaultFreqAndVolScale,
&gSfxDefaultFreqAndVolScale, &gSfxDefaultReverb); &gSfxDefaultFreqAndVolScale, &gSfxDefaultReverb);
pauseCtx->randoQuestMode ^= 1; pauseCtx->randoQuestMode ^= 1;