From 27459b74ffdbe86cf32c6b34f3aeff4a664b18c1 Mon Sep 17 00:00:00 2001 From: Dabomstew <4035468+Dabomstew@users.noreply.github.com> Date: Mon, 8 Jun 2020 15:55:03 +1200 Subject: [PATCH] Add back the 10 second wait at end of credits if delays aren't short --- scripts/HallOfFame.asm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/scripts/HallOfFame.asm b/scripts/HallOfFame.asm index 07099cd3..e47bb725 100755 --- a/scripts/HallOfFame.asm +++ b/scripts/HallOfFame.asm @@ -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