summaryrefslogtreecommitdiff
path: root/src/home/play_song.asm
blob: a29eacf21717e3c63446f98a75b41c6b8ab1ed7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ScriptPlaySong:
	call PlaySong
	ret

Func_3c87:
	push af
	call PauseSong
	pop af
	call PlaySong
	call WaitForSongToFinish
	call ResumeSong
	ret

WaitForSongToFinish:
	call DoFrameIfLCDEnabled
	call AssertSongFinished
	or a
	jr nz, WaitForSongToFinish
	ret