Make the game over screen less easy to skip.

This commit is contained in:
Randy Thiemann 2023-11-10 23:01:06 +01:00
parent f7986f73b2
commit b992c6f4ae
3 changed files with 4 additions and 4 deletions

Binary file not shown.

Binary file not shown.

View File

@ -636,7 +636,7 @@ GamePlayEventLoopHandlerB::
; Retry?
.checkretry
ldh a, [hAState]
cp a, 1
cp a, 20
jr nz, .noretry
call CheckAndAddHiscore
call RNGInit
@ -656,7 +656,7 @@ GamePlayEventLoopHandlerB::
; Quit
.noretry
ldh a, [hBState]
cp a, 1
cp a, 20
jp nz, .drawStaticInfo
call CheckAndAddHiscore
jp SwitchToTitle
@ -1432,7 +1432,7 @@ GamePlayBigEventLoopHandlerB:
; Retry?
.checkretry
ldh a, [hAState]
cp a, 1
cp a, 20
jr nz, .noretry
ld a, [wReturnToSmall]
cp a, $FF
@ -1472,7 +1472,7 @@ GamePlayBigEventLoopHandlerB:
; Quit
.noretry
ldh a, [hBState]
cp a, 1
cp a, 20
jp nz, .drawStaticInfo
call CheckAndAddHiscore
jp SwitchToTitle