aboutsummaryrefslogtreecommitdiffstats
path: root/home
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2021-08-28 17:02:20 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2021-08-28 17:02:20 -0400
commit7ee8a6509e323ec012ece6273809e46830c29239 (patch)
treea58c8343919f9be0f208733f77506d783e5c269c /home
parentRemove old tile animation comments (#333) (diff)
downloadpokeyellow-7ee8a6509e323ec012ece6273809e46830c29239.tar.gz
pokeyellow-7ee8a6509e323ec012ece6273809e46830c29239.tar.xz
pokeyellow-7ee8a6509e323ec012ece6273809e46830c29239.zip
wcf4b -> wStringBuffer
Diffstat (limited to 'home')
-rw-r--r--home/copy_string.asm8
-rw-r--r--home/give.asm4
-rw-r--r--home/list_menu.asm2
3 files changed, 7 insertions, 7 deletions
diff --git a/home/copy_string.asm b/home/copy_string.asm
index 7f86e501..05f9ba80 100644
--- a/home/copy_string.asm
+++ b/home/copy_string.asm
@@ -1,9 +1,9 @@
-; copies a string from [de] to [wcf4b]
-CopyStringToCF4B::
- ld hl, wcf4b
+; copies a string from de to wStringBuffer
+CopyToStringBuffer::
+ ld hl, wStringBuffer
; fall through
-; copies a string from [de] to [hl]
+; copies a string from de to hl
CopyString::
ld a, [de]
inc de
diff --git a/home/give.asm b/home/give.asm
index cbfd0310..f446cf36 100644
--- a/home/give.asm
+++ b/home/give.asm
@@ -1,6 +1,6 @@
GiveItem::
; Give player quantity c of item b,
-; and copy the item's name to wcf4b.
+; and copy the item's name to wStringBuffer.
; Return carry on success.
ld a, b
ld [wd11e], a
@@ -11,7 +11,7 @@ GiveItem::
call AddItemToInventory
ret nc
call GetItemName
- call CopyStringToCF4B
+ call CopyToStringBuffer
scf
ret
diff --git a/home/list_menu.asm b/home/list_menu.asm
index c856e91d..d6bf43b2 100644
--- a/home/list_menu.asm
+++ b/home/list_menu.asm
@@ -157,7 +157,7 @@ DisplayListMenuIDLoop::
call GetPartyMonName
.storeChosenEntry ; store the menu entry that the player chose and return
ld de, wcd6d
- call CopyStringToCF4B ; copy name to wcf4b
+ call CopyToStringBuffer
ld a, CHOSE_MENU_ITEM
ld [wMenuExitMethod], a
ld a, [wCurrentMenuItem]