pokecrystal-board/engine/battle/update_battle_huds.asm
mid-kid d3cc861d33 Fix snake_case filenames
Renamed a bunch of files, most of them one-off functions, to better fit
the general snake_case naming scheme. Also renamed some awfully long filenames.
2018-04-04 22:26:07 +02:00

10 lines
166 B
NASM

_UpdateBattleHUDs:
farcall DrawPlayerHUD
ld hl, wPlayerHPPal
call SetHPPal
farcall DrawEnemyHUD
ld hl, wEnemyHPPal
call SetHPPal
farcall FinishBattleAnim
ret