rename 'StartMusic' to 'PlayMusic'

This commit is contained in:
yenatch
2013-10-08 13:21:15 -04:00
parent 963fe4808b
commit 789469c465
4 changed files with 48 additions and 48 deletions

View File

@@ -8,7 +8,7 @@ PlayTrainerEncounterMusic: ; e900a
; play nothing for one frame
push de
ld de, $0000 ; id: Music_Nothing
call StartMusic
call PlayMusic
call DelayFrame
; play new song
call MaxVolume
@@ -17,7 +17,7 @@ PlayTrainerEncounterMusic: ; e900a
ld hl, TrainerEncounterMusic
add hl, de
ld e, [hl]
call StartMusic
call PlayMusic
ret
; e9027