diff options
Diffstat (limited to 'constants')
-rwxr-xr-x | constants/music_constants.asm | 2 | ||||
-rw-r--r-- | constants/pokedex_constants.asm | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/constants/music_constants.asm b/constants/music_constants.asm index c304fbb..acb47eb 100755 --- a/constants/music_constants.asm +++ b/constants/music_constants.asm @@ -15,5 +15,5 @@ const MUSIC_EVOLUTION ; 0C MUSIC_SURF EQU $62 - + SE_SELECT EQU 5 diff --git a/constants/pokedex_constants.asm b/constants/pokedex_constants.asm index 66da19b..b3c5e00 100644 --- a/constants/pokedex_constants.asm +++ b/constants/pokedex_constants.asm @@ -252,9 +252,9 @@ const DEX_BULU ; f9 SNUBBULL const DEX_TAIL ; fa AIPOM const DEX_LEAFY ; fb LEAFEON (evolved EEVEE) -NUM_POKEMON EQU const_value + -1 +NUM_POKEMON EQU const_value - 1 const DEX_FC ; fc - const DEX_FD ; fd + const DEX_EGG ; fd EGG const DEX_FE ; fe ; Annon forms @@ -285,4 +285,4 @@ NUM_POKEMON EQU const_value + -1 const ANNON_X ; 24 const ANNON_Y ; 25 const ANNON_Z ; 26 -NUM_ANNON EQU const_value + -1 ; 26 +NUM_ANNON EQU const_value - 1 ; 26 |