diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-02-09 13:20:55 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-02-09 13:20:55 +0100 |
commit | aca8305c725c1d14ff574e3c2d6708f914b1d5a7 (patch) | |
tree | 8e5393772f36d2c9d84ba2ba7aaced8d8655b465 /src/constants | |
parent | 64a724dce584670ea25f63e3307c81031d9e4adb (diff) |
Bump extras to use updated version of gbz80disasm.py
tcgdisasm.py has not been updated to read symbols from the symfile yet
Diffstat (limited to 'src/constants')
-rwxr-xr-x | src/constants/card_constants.asm | 2 | ||||
-rw-r--r-- | src/constants/card_data_constants.asm | 2 | ||||
-rwxr-xr-x | src/constants/npc_constants.asm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/constants/card_constants.asm b/src/constants/card_constants.asm index 330de69..30560c2 100755 --- a/src/constants/card_constants.asm +++ b/src/constants/card_constants.asm @@ -1,4 +1,4 @@ -const_value set 1 + const_def 1 const GRASS_ENERGY ; $01 const FIRE_ENERGY ; $02 const WATER_ENERGY ; $03 diff --git a/src/constants/card_data_constants.asm b/src/constants/card_data_constants.asm index 192624a..0816008 100644 --- a/src/constants/card_data_constants.asm +++ b/src/constants/card_data_constants.asm @@ -24,7 +24,7 @@ TYPE_PKMN_FIGHTING EQUS "FIGHTING" TYPE_PKMN_PSYCHIC EQUS "PSYCHIC" TYPE_PKMN_COLORLESS EQUS "COLORLESS" TYPE_PKMN_UNUSED EQUS "UNUSED_TYPE" -const_value set TYPE_PKMN_UNUSED + 1 - TYPE_PKMN_FIRE + const_def TYPE_PKMN_UNUSED + 1 - TYPE_PKMN_FIRE const TYPE_ENERGY_FIRE ; $8 const TYPE_ENERGY_GRASS ; $9 const TYPE_ENERGY_LIGHTNING ; $A diff --git a/src/constants/npc_constants.asm b/src/constants/npc_constants.asm index be57c3c..f4972dc 100755 --- a/src/constants/npc_constants.asm +++ b/src/constants/npc_constants.asm @@ -1,4 +1,4 @@ -const_value set 1 + const_def 1 const PLAYER_PIC ; $01 const RONALD_PIC ; $02 const SAM_PIC ; $03 |