summaryrefslogtreecommitdiff
path: root/home/music.asm
blob: 4ad9d06809f1e995610a165b240b1632af34d0c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
SECTION "PlayMapMusic", ROM0[$3de1]

PlayMapMusic: ; 00:3de1
	push hl
	push de
	push bc
	push af
	call GetMapMusic
	ld a, [wMapMusic]
	cp e
	jr z, .dont_play
	push de
	ld de, 0
	call PlayMusic
	call DelayFrame
	pop de
	ld a, e
	ld [wMapMusic], a
	call PlayMusic

.dont_play
	pop af
	pop bc
	pop de
	pop hl
	ret