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 /home | |
| parent | 25048bd12dfb1f7182be32f1dba24616c6175377 (diff) | |
clean up GetName/NamesPointers
Diffstat (limited to 'home')
| -rw-r--r-- | home/names.asm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/home/names.asm b/home/names.asm index aca3047f1..2ba5e65cc 100644 --- a/home/names.asm +++ b/home/names.asm @@ -1,13 +1,13 @@ NamesPointers:: ; 33ab -; entries correspond to GetName constants (see constants/misc_constants.asm) - dba PokemonNames - dba MoveNames - dbw 0, 0 - dba ItemNames - dbw 0, PartyMonOT - dbw 0, OTPartyMonOT - dba TrainerClassNames - dbw BANK(PackMenuGFX), PackMenuGFX + 60 +; entries correspond to GetName constants (see constants/text_constants.asm) + dba PokemonNames ; PKMN_NAME (not used; jumps to GetPokemonName) + dba MoveNames ; MOVE_NAME + dbw 0, NULL ; DUMMY_NAME + dba ItemNames ; ITEM_NAME + dbw 0, PartyMonOT ; PARTY_OT_NAME + dbw 0, OTPartyMonOT ; ENEMY_OT_NAME + dba TrainerClassNames ; TRAINER_NAME + dbw $4, $4b52 ; BROKEN_NAME (within PackMenuGFX) ; 33c3 GetName:: ; 33c3 |
