diff options
Diffstat (limited to 'home/names.asm')
-rw-r--r-- | home/names.asm | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/home/names.asm b/home/names.asm index aacd285..7b5b995 100644 --- a/home/names.asm +++ b/home/names.asm @@ -1,10 +1,10 @@ INCLUDE "constants.asm" -if DEBUG -SECTION "Names", ROM0[$36c8] -else -SECTION "Names", ROM0[$368c] ; Unsure -endc +; if DEBUG +SECTION "home/names.asm@Names", ROM0 +; else +; SECTION "Names", ROM0[$368c] ; Unsure +; endc NamesPointers:: ; 00:36c8 ; entries correspond to GetName constants (see constants/text_constants.asm) @@ -244,7 +244,11 @@ Unreferenced_GetMoveName:: ; 00:37fc pop hl ret -SECTION "GetNick", ROM0[$3a97] +SECTION "home/names.asm@GetNick", ROM0 + +GetCurNick:: ; 3a91 (00:3a91) + ld a, [wWhichPokemon] + ld hl, wPartyMonNicknames GetNick: ; 00:3a97 ; Get nickname a from list hl. @@ -259,4 +263,4 @@ GetNick: ; 00:3a97 callab CorrectNickErrors pop bc pop hl - ret + ret
\ No newline at end of file |