diff options
author | yenatch <yenatch@gmail.com> | 2013-10-08 13:10:36 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-10-08 13:10:36 -0400 |
commit | 546c17ad37b1e0cfd91ea630e0bbc044c28b3e6a (patch) | |
tree | bf0d8bdf9e0f1b29e4693068922bcda5d98d0b18 /engine/scripting.asm | |
parent | 4ac678313f9c7b9d28774a1a936b8de64350b478 (diff) |
rename 'StartSFX' to 'PlaySFX'
Diffstat (limited to 'engine/scripting.asm')
-rw-r--r-- | engine/scripting.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/scripting.asm b/engine/scripting.asm index 39a56950e..06364a27c 100644 --- a/engine/scripting.asm +++ b/engine/scripting.asm @@ -588,7 +588,7 @@ Script_specialsound: ; 0x96fe4 jr z, .play ld de, SFX_ITEM .play - call StartSFX + call PlaySFX call WaitSFX ret ; 0x96ffe @@ -954,7 +954,7 @@ Script_playsound: ; 0x971b7 ld e, a call GetScriptByte ld d, a - call StartSFX + call PlaySFX ret ; 0x971c3 @@ -971,7 +971,7 @@ Script_warpsound: ; 0x971c7 ld a, $5 ld hl, $4a07 rst $8 - call StartSFX + call PlaySFX ret ; 0x971d1 |