summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-10-08 13:21:15 -0400
committeryenatch <yenatch@gmail.com>2013-10-08 13:21:15 -0400
commit789469c465aa18850e1888785b0eb816fd80a18a (patch)
tree4d1a6277d3c1aac58b6576904fe508ba13305929 /audio
parent963fe4808bc36cb72984dbfc7a8582059165d8d7 (diff)
rename 'StartMusic' to 'PlayMusic'
Diffstat (limited to 'audio')
-rw-r--r--audio/trainer_encounters.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/trainer_encounters.asm b/audio/trainer_encounters.asm
index 7c64d586a..7ddc38f06 100644
--- a/audio/trainer_encounters.asm
+++ b/audio/trainer_encounters.asm
@@ -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