diff options
| author | Rangi <remy.oukaour+rangi@gmail.com> | 2020-08-09 15:16:31 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi@gmail.com> | 2020-08-09 15:16:31 -0400 |
| commit | 9c229cde440bc6f68343331ad7bc6e1a52a742f0 (patch) | |
| tree | 3bc08aaca7e09ae9933a11dbdcdc545b90d5b343 /constants | |
| parent | a75c6619fb933dc2d4c94b24394fb6fa9335b3b1 (diff) | |
Clean up some code in home/
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 |
