summaryrefslogtreecommitdiff
path: root/engine/pinball_game/draw_pikachu_saver_icon.asm
blob: 2b915c4b093465e8581cd560c8fe64644f5d1525 (plain)
1
2
3
4
5
6
7
8
9
10
11
DrawPikachuSaverLightningBoltIcon: ; 0xdcb4
; Draws the lightning bolt icon when Pikachu saver has been fully charged.
; The ligntning bolt is drawn in the score bar at the bottom of the screen.
	ld a, [wPikachuSaverCharge]
	cp MAX_PIKACHU_SAVER_CHARGE
	ld a, $81
	jr nz, .drawIcon
	ld a, $84
.drawIcon
	ld [wBottomMessageBuffer + $46], a
	ret