diff options
author | yenatch <yenatch@gmail.com> | 2013-10-08 13:21:15 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-10-08 13:21:15 -0400 |
commit | 789469c465aa18850e1888785b0eb816fd80a18a (patch) | |
tree | 4d1a6277d3c1aac58b6576904fe508ba13305929 /engine | |
parent | 963fe4808bc36cb72984dbfc7a8582059165d8d7 (diff) |
rename 'StartMusic' to 'PlayMusic'
Diffstat (limited to 'engine')
-rw-r--r-- | engine/credits.asm | 4 | ||||
-rw-r--r-- | engine/scripting.asm | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/engine/credits.asm b/engine/credits.asm index d5e4399b9..2cfac86f1 100644 --- a/engine/credits.asm +++ b/engine/credits.asm @@ -223,10 +223,10 @@ ParseCredits: ; 1099aa ld de, MUSIC_CREDITS push de ld de, MUSIC_NONE - call StartMusic + call PlayMusic call DelayFrame pop de - call StartMusic + call PlayMusic jp .loop .wait2 diff --git a/engine/scripting.asm b/engine/scripting.asm index 06364a27c..dcd266f6e 100644 --- a/engine/scripting.asm +++ b/engine/scripting.asm @@ -917,7 +917,7 @@ Script_playmusic: ; 0x97189 ; music_pointer (MultiByteParam) ld de, $0000 - call StartMusic + call PlayMusic xor a ld [$c2a7], a call MaxVolume @@ -925,7 +925,7 @@ Script_playmusic: ; 0x97189 ld e, a call GetScriptByte ld d, a - call StartMusic + call PlayMusic ret ; 0x971a2 |