diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-20 12:25:55 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-20 12:25:55 -0500 |
commit | 05382d3e3c03616d6edf21833e89a8264a8cd10a (patch) | |
tree | df62bed28665b4c1f8e6bc54c07bd4ce8efbccea /constants/text_constants.asm | |
parent | 8127d1fbcfccb7cd5c3e210699dd540e370b6634 (diff) |
PARTY_LENGTH; MON_NAME; sgb_border.bin
Diffstat (limited to 'constants/text_constants.asm')
-rw-r--r-- | constants/text_constants.asm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/constants/text_constants.asm b/constants/text_constants.asm index 27c42ed92..a6052065c 100644 --- a/constants/text_constants.asm +++ b/constants/text_constants.asm @@ -1,16 +1,16 @@ ; name lengths -NAME_LENGTH EQU 11 -PLAYER_NAME_LENGTH EQU 8 -BOX_NAME_LENGTH EQU 9 -PKMN_NAME_LENGTH EQU 11 -MOVE_NAME_LENGTH EQU 13 -ITEM_NAME_LENGTH EQU 13 +NAME_LENGTH EQU 11 +PLAYER_NAME_LENGTH EQU 8 +BOX_NAME_LENGTH EQU 9 +MON_NAME_LENGTH EQU 11 +MOVE_NAME_LENGTH EQU 13 +ITEM_NAME_LENGTH EQU 13 TRAINER_CLASS_NAME_LENGTH EQU 13 NAME_LENGTH_JAPANESE EQU 6 ; GetName types (see home/names.asm) const_value set 1 - const PKMN_NAME ; 1 + const MON_NAME ; 1 const MOVE_NAME ; 2 const DUMMY_NAME ; 3 const ITEM_NAME ; 4 |