summaryrefslogtreecommitdiff
path: root/home/pokemon.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-12-23 16:46:49 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2020-12-23 16:46:49 -0500
commit524f57703fb362dd9a131edb1eb5aebad5ffe633 (patch)
treef49e12f9e57b60128d6ea7b50116b66835874734 /home/pokemon.asm
parentb87c45afcd9fcd06be459f112b01e6035dc3f20b (diff)
Rename some labels
- Remove "Buffer" suffix from some byte and word quantities - Change "Ptr" to "Pointer"
Diffstat (limited to 'home/pokemon.asm')
-rw-r--r--home/pokemon.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/home/pokemon.asm b/home/pokemon.asm
index 29af1cdd..eb77d387 100644
--- a/home/pokemon.asm
+++ b/home/pokemon.asm
@@ -199,8 +199,8 @@ PrintLevel_Force3Digits::
ld c, 3
Print8BitNumLeftAlign::
- ld [wDeciramBuffer], a
- ld de, wDeciramBuffer
+ ld [wTextDecimalByte], a
+ ld de, wTextDecimalByte
ld b, PRINTNUM_LEFTALIGN | 1
jp PrintNum