summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2018-05-23 11:14:15 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2018-05-23 11:14:15 -0400
commit4e776d4fa6bb0510fa06416ad7a6dd9ffe0ff724 (patch)
tree8104ec05a9488714ec23a15795a2e7b252aa93a0
parentd2880d1981876b06bc867ae17376e31f2d4df60d (diff)
Use constants
-rw-r--r--home/hp_pals.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/home/hp_pals.asm b/home/hp_pals.asm
index 527ec860e..221b93da0 100644
--- a/home/hp_pals.asm
+++ b/home/hp_pals.asm
@@ -9,10 +9,10 @@ GetHPPal:: ; 3353
; Get palette for hp bar pixel length e in d.
ld d, HP_GREEN
ld a, e
- cp (50 * 48 / 100)
+ cp (HP_BAR_LENGTH_PX * 50 / 100) ; 24
ret nc
inc d ; HP_YELLOW
- cp (21 * 48 / 100)
+ cp (HP_BAR_LENGTH_PX * 21 / 100) ; 10
ret nc
inc d ; HP_RED
ret