aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorNarishma-gb <194818981+Narishma-gb@users.noreply.github.com>2025-04-09 05:17:32 +0200
committerGitHub <noreply@github.com>2025-04-08 22:17:32 -0500
commit0ecc36c83a6bf3ecfee45e9f62afc3ebfb97b024 (patch)
tree6c1e5dce8609e33aed4311d8cc1f4b4ebcc73357 /scripts
parentFurther improve NPC trade labels and comments (#493) (diff)
downloadpokeyellow-0ecc36c83a6bf3ecfee45e9f62afc3ebfb97b024.tar.gz
pokeyellow-0ecc36c83a6bf3ecfee45e9f62afc3ebfb97b024.tar.xz
pokeyellow-0ecc36c83a6bf3ecfee45e9f62afc3ebfb97b024.zip
Use constants in `PrintBCDNumber` calls (#503)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/GameCorner.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/GameCorner.asm b/scripts/GameCorner.asm
index cac3170c..f95431d1 100644
--- a/scripts/GameCorner.asm
+++ b/scripts/GameCorner.asm
@@ -511,7 +511,7 @@ GameCornerDrawCoinBox:
call PlaceString
hlcoord 15, 5
ld de, wPlayerCoins
- ld c, $82
+ ld c, 2 | LEADING_ZEROES
call PrintBCDNumber
ld hl, wStatusFlags5
res BIT_NO_TEXT_DELAY, [hl]