clean up GetName/NamesPointers

This commit is contained in:
Remy Oukaour
2018-01-19 00:29:05 -05:00
parent 25048bd12d
commit 9576740b70
3 changed files with 19 additions and 18 deletions

View File

@@ -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