From 4c539b8954070f3a64959cb2b0757e8da49b8162 Mon Sep 17 00:00:00 2001 From: May Evans <36418502+PlagueVonKarma@users.noreply.github.com> Date: Wed, 31 Aug 2022 02:19:47 +0100 Subject: [PATCH] PRESENTS subtitle restoration from: https://github.com/pret/pokered/wiki/Restore-the-PRESENTS-subtitle-under-the-Game-Freak-logo-in-the-intro-animation --- engine/movie/intro.asm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/engine/movie/intro.asm b/engine/movie/intro.asm index f489c60b..aec86e64 100644 --- a/engine/movie/intro.asm +++ b/engine/movie/intro.asm @@ -327,6 +327,15 @@ PlayShootingStar: push af pop af jr c, .next ; skip the delay if the user interrupted the animation + hlcoord 7, 11 ; starting coordinate, restore presents + ld a, $67 ; starting tile ID + ld c, $06 ; number of tiles + .loop + ld [hli], a + inc a + dec c + jr nz, .loop + ld c, 40 call DelayFrames .next