mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07: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.
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user