mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
Use constants
This commit is contained in:
parent
d2880d1981
commit
4e776d4fa6
@ -9,10 +9,10 @@ GetHPPal:: ; 3353
|
|||||||
; Get palette for hp bar pixel length e in d.
|
; Get palette for hp bar pixel length e in d.
|
||||||
ld d, HP_GREEN
|
ld d, HP_GREEN
|
||||||
ld a, e
|
ld a, e
|
||||||
cp (50 * 48 / 100)
|
cp (HP_BAR_LENGTH_PX * 50 / 100) ; 24
|
||||||
ret nc
|
ret nc
|
||||||
inc d ; HP_YELLOW
|
inc d ; HP_YELLOW
|
||||||
cp (21 * 48 / 100)
|
cp (HP_BAR_LENGTH_PX * 21 / 100) ; 10
|
||||||
ret nc
|
ret nc
|
||||||
inc d ; HP_RED
|
inc d ; HP_RED
|
||||||
ret
|
ret
|
||||||
|
Loading…
Reference in New Issue
Block a user