From 4e776d4fa6bb0510fa06416ad7a6dd9ffe0ff724 Mon Sep 17 00:00:00 2001 From: Rangi Date: Wed, 23 May 2018 11:14:15 -0400 Subject: [PATCH] Use constants --- home/hp_pals.asm | 4 ++-- 1 file 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