Skip to content

Commit

Permalink
Add back the 10 second wait at end of credits if delays aren't short
Browse files Browse the repository at this point in the history
  • Loading branch information
Dabomstew committed Jun 8, 2020
1 parent cb93c35 commit 27459b7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions scripts/HallOfFame.asm
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,16 @@ HallofFameRoomScript2:
ld a, PALLET_TOWN
ld [wLastBlackoutMap], a
callba SaveSAVtoSRAM
; if short delays off, wait 600 frames like vanilla
sboptioncheck SHORT_DELAYS
jr nz, .done
ld b, 3
.delayLoop
ld c, 200
call DelayFrames
dec b
jr nz, .delayLoop
.done
call WaitForTextScrollButtonPress
jp Init

Expand Down

0 comments on commit 27459b7

Please sign in to comment.