summaryrefslogtreecommitdiff
path: root/constants/pokedex_constants.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-07-04 01:00:45 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-07-04 01:00:45 -0400
commite4e0af4d6713161d46cc0a1d580645ca40d6fa81 (patch)
tree34468478ff888022c58fdb6548a02e4069e1fba9 /constants/pokedex_constants.asm
parent7e92d5ba8c7d7c255a49bce76239ec12d6398cef (diff)
Remove remaining raw $xxxx values, and replace "+ -1" with "- 1" (supported by rgbds 0.4.0)
Diffstat (limited to 'constants/pokedex_constants.asm')
-rw-r--r--constants/pokedex_constants.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/constants/pokedex_constants.asm b/constants/pokedex_constants.asm
index c8605852..e462586e 100644
--- a/constants/pokedex_constants.asm
+++ b/constants/pokedex_constants.asm
@@ -151,4 +151,4 @@
const DEX_MEWTWO ; 150
const DEX_MEW ; 151
-NUM_POKEMON EQU const_value + -1
+NUM_POKEMON EQU const_value - 1