Skip to content

Commit

Permalink
S&Q: Don't switch back to confirmation screen
Browse files Browse the repository at this point in the history
  • Loading branch information
lilDavid committed Dec 23, 2023
1 parent 6054697 commit 607928e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions soh/src/overlays/misc/ovl_kaleido_scope/z_kaleido_scope_PAL.c
Original file line number Diff line number Diff line change
Expand Up @@ -1603,9 +1603,9 @@ void KaleidoScope_DrawPages(PlayState* play, GraphicsContext* gfxCtx) {

if (((pauseCtx->state == 7) &&
(pauseCtx->unk_1EC < 4 || pauseCtx->unk_1EC == 7 ||
(CVarGetInteger("gSaveAndQuit", 0) && pauseCtx->unk_1EC == 5))) ||
(CVarGetInteger("gSaveAndQuit", 0) && (pauseCtx->unk_1EC == 5 || pauseCtx->unk_1EC == 8)))) ||
(pauseCtx->state == 0xE)) {
if (pauseCtx->unk_1EC == 7 || pauseCtx->unk_1EC == 5) {
if (pauseCtx->unk_1EC == 5 || pauseCtx->unk_1EC == 7 || pauseCtx->unk_1EC == 8) {
POLY_KAL_DISP =
KaleidoScope_QuadTextureIA8(POLY_KAL_DISP, sContinuePromptTexs[gSaveContext.language], 152, 16, 0);
} else {
Expand Down

0 comments on commit 607928e

Please sign in to comment.