diff options
| author | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-19 00:29:05 -0500 |
|---|---|---|
| committer | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-19 00:29:05 -0500 |
| commit | 9576740b7023d67da0da0cbe9bd2a66a0ea74eea (patch) | |
| tree | 657dfecb60ee5eef6c977c1972a5cb139d7d000b /constants | |
| parent | 25048bd12dfb1f7182be32f1dba24616c6175377 (diff) | |
clean up GetName/NamesPointers
Diffstat (limited to 'constants')
| -rw-r--r-- | constants/text_constants.asm | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/constants/text_constants.asm b/constants/text_constants.asm index 6311fe715..e14a0b551 100644 --- a/constants/text_constants.asm +++ b/constants/text_constants.asm @@ -9,14 +9,15 @@ TRAINER_CLASS_NAME_LENGTH EQU 13 NAME_LENGTH_JAPANESE EQU 6 ; GetName types (see home/names.asm) -PKMN_NAME EQU 1 -MOVE_NAME EQU 2 -; dummied out EQU 3 -ITEM_NAME EQU 4 -PARTY_OT_NAME EQU 5 -ENEMY_OT_NAME EQU 6 -TRAINER_NAME EQU 7 -; broken ptr EQU 8 +const_value set 1 + const PKMN_NAME ; 1 + const MOVE_NAME ; 2 + const DUMMY_NAME ; 3 + const ITEM_NAME ; 4 + const PARTY_OT_NAME ; 5 + const ENEMY_OT_NAME ; 6 + const TRAINER_NAME ; 7 + const BROKEN_NAME ; 8 ; see home/text.asm BORDER_WIDTH EQU 2 |
