diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-07 10:27:03 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-07 10:27:03 -0500 |
commit | 0da16c162580dd9677dc9407775f4d37d9403b94 (patch) | |
tree | bc984ec901561b54147ac085bdf3ca7e03b8ec25 /engine | |
parent | 847e487eeffbe1acdbd7b89739118a30b2147db6 (diff) |
Use STARTER1 and STARTER2 for the title screen
Diffstat (limited to 'engine')
-rwxr-xr-x | 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 a75c64ee..ef015795 100755 --- a/engine/movie/title.asm +++ b/engine/movie/title.asm @@ -119,10 +119,10 @@ DisplayTitleScreen: call EnableLCD IF DEF(_RED) - ld a, CHARMANDER ; which Pokemon to show first on the title screen + ld a, STARTER1 ; which Pokemon to show first on the title screen ENDC IF DEF(_BLUE) - ld a, SQUIRTLE ; which Pokemon to show first on the title screen + ld a, STARTER2 ; which Pokemon to show first on the title screen ENDC ld [wTitleMonSpecies], a call LoadTitleMonSprite |