diff options
author | yenatch <yenatch@gmail.com> | 2018-04-11 23:40:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-11 23:40:29 -0400 |
commit | a63d9dfd4f4b214034c9a88a14b53635c10914d9 (patch) | |
tree | e41d833796186a2b5f89a43fef2a990507072650 | |
parent | 40b537d45b4b8937038126f7e5d2d21ccee460c0 (diff) | |
parent | 436f4829b5ab61a9b97fd9c82b0a8dc9812bbbe9 (diff) |
Merge pull request #507 from yenatch/master
fix label from the wrong bank in the title screen
-rw-r--r-- | engine/movie/title.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/movie/title.asm b/engine/movie/title.asm index f311f2342..ad1246790 100644 --- a/engine/movie/title.asm +++ b/engine/movie/title.asm @@ -220,7 +220,7 @@ _TitleScreen: ; 10ed67 ld [hBGMapMode], a xor a - ld [wBGPals1 + 2], a + ld [wd002], a ; Play starting sound effect call SFXChannelsOff @@ -231,7 +231,7 @@ _TitleScreen: ; 10ed67 ; 10eea7 SuicuneFrameIterator: ; 10eea7 - ld hl, wBGPals1 + 2 + ld hl, wd002 ld a, [hl] ld c, a inc [hl] |