summaryrefslogtreecommitdiff
path: root/home/names.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2018-07-29 16:00:11 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2018-07-29 16:00:11 -0400
commitb5a9e83a94f54c43fedca004fbd7223d6f144fc0 (patch)
treeda9ffb3daec46b2121abf08468f2bba9844b6627 /home/names.asm
parentc9cb67141bd13db51b8f6cb79f158cbca21660d0 (diff)
Fix reviewed issues.
Pokedex_PrintListing has a comment noting how it depends on wCurSpecies == wNamedObjectIndexBuffer; an assert would be more convenient, but is not possible since WRAM label addresses are not defined yet here.
Diffstat (limited to 'home/names.asm')
-rw-r--r--home/names.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/home/names.asm b/home/names.asm
index da787fb2f..63043863d 100644
--- a/home/names.asm
+++ b/home/names.asm
@@ -2,10 +2,10 @@ NamesPointers::
; entries correspond to GetName constants (see constants/text_constants.asm)
dba PokemonNames ; MON_NAME (not used; jumps to GetPokemonName)
dba MoveNames ; MOVE_NAME
- dbw 0, NULL ; DUMMY_NAME
+ dba NULL ; DUMMY_NAME
dba ItemNames ; ITEM_NAME
- dbw 0, wPartyMonOT ; PARTY_OT_NAME
- dbw 0, wOTPartyMonOT ; ENEMY_OT_NAME
+ dbw 0, wPartyMonOT ; PARTY_OT_NAME
+ dbw 0, wOTPartyMonOT ; ENEMY_OT_NAME
dba TrainerClassNames ; TRAINER_NAME
dbw 4, MoveDescriptions ; MOVE_DESC_NAME_BROKEN (wrong bank)