summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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