summaryrefslogtreecommitdiff
path: root/home.asm
diff options
context:
space:
mode:
Diffstat (limited to 'home.asm')
-rw-r--r--home.asm12
1 files changed, 6 insertions, 6 deletions
diff --git a/home.asm b/home.asm
index 121e597c..a06d2b7b 100644
--- a/home.asm
+++ b/home.asm
@@ -1537,7 +1537,7 @@ DisplayListMenuIDLoop:: ; 2c53 (0:2c53)
call GetPartyMonName
.storeChosenEntry ; store the menu entry that the player chose and return
ld de,wcd6d
- call CopyStringToCF4B ; copy name to wcf4b
+ call CopyStringToCF50 ; copy name to wcf50
ld a,CHOSE_MENU_ITEM
ld [wMenuExitMethod],a
ld a,[wCurrentMenuItem]
@@ -3382,9 +3382,9 @@ GetItemPrice:: ; 37df (0:37df)
ld [MBC1RomBank], a
ret
-; copies a string from [de] to [wcf4b]
-CopyStringToCF4B:: ; 3826 (0:3826)
- ld hl, wcf4b
+; copies a string from [de] to [wcf50]
+CopyStringToCF50:: ; 3826 (0:3826)
+ ld hl, wcf50
; fall through
; copies a string from [de] to [hl]
@@ -4558,7 +4558,7 @@ ReloadMapSpriteTilePatterns:: ; 3e08 (0:3e08)
GiveItem::
; Give player quantity c of item b,
-; and copy the item's name to wcf4b.
+; and copy the item's name to wcf50.
; Return carry on success.
ld a, b
ld [wd11e], a
@@ -4569,7 +4569,7 @@ GiveItem::
call AddItemToInventory
ret nc
call GetItemName
- call CopyStringToCF4B
+ call CopyStringToCF50
scf
ret