diff options
author | Marcus Huderle <huderlem@gmail.com> | 2017-07-19 22:16:44 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2017-07-19 22:16:44 -0700 |
commit | f56a2fc512cfd0ff348f255a913bdeab29476893 (patch) | |
tree | c2dd768b98b79399c39083839993bb80b253e268 /engine/pinball_game/evolution_mode.asm | |
parent | 504e04e292a309ca6e9a12c0c5e3fbd8bd7bab13 (diff) |
Fix SPECIAL_MODE_ constants. They were mislabeled.
Diffstat (limited to 'engine/pinball_game/evolution_mode.asm')
-rwxr-xr-x | engine/pinball_game/evolution_mode.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/pinball_game/evolution_mode.asm b/engine/pinball_game/evolution_mode.asm index d6db1a8..a14e3ba 100755 --- a/engine/pinball_game/evolution_mode.asm +++ b/engine/pinball_game/evolution_mode.asm @@ -361,7 +361,7 @@ SelectPokemonToEvolve: ; 0x10cb7 call LoadVRAMData
.asm_10cfc
call FillBottomMessageBufferWithBlackTile
- ld a, SPECIAL_MODE_CATCHEM
+ ld a, SPECIAL_MODE_EVOLUTION
ld [wDrawBottomMessageBox], a
ld [wInSpecialMode], a
ld [wSpecialMode], a
|