summaryrefslogtreecommitdiff
path: root/audio/engine.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-10-25 17:54:04 -0400
committeryenatch <yenatch@gmail.com>2013-10-25 17:54:04 -0400
commit52a6b7da8ebebe2adefc03b43bcc5800ddec2835 (patch)
tree74d3cf86f04e9c48dc27d2755be7279852d44bbf /audio/engine.asm
parent9e81c46cbfa09805eb5503ee6e32b3d4a9eeb6a0 (diff)
parent946a213f09db39243c883ad677a22de738977836 (diff)
Merge commit '946a213f' into merge-mrwint
Diffstat (limited to 'audio/engine.asm')
-rw-r--r--audio/engine.asm7
1 files changed, 3 insertions, 4 deletions
diff --git a/audio/engine.asm b/audio/engine.asm
index d1f3376a9..ea48825d4 100644
--- a/audio/engine.asm
+++ b/audio/engine.asm
@@ -3,12 +3,11 @@
; Interfaces are in bank 0.
; Notable functions:
-; UpdateSound (called during VBlank)
; FadeMusic
; PlayStereoSFX
; PlayCry
-SoundRestart: ; e8000
+_SoundRestart: ; e8000
; restart sound operation
; clear all relevant hardware registers & wram
push hl
@@ -65,7 +64,7 @@ MusicFadeRestart: ; e803d
push af
ld a, [MusicFadeIDLo]
push af
- call SoundRestart
+ call _SoundRestart
pop af
ld [MusicFadeIDLo], a
pop af
@@ -85,7 +84,7 @@ MusicOff: ; e8057
ret
; e805c
-UpdateSound: ; e805c
+_UpdateSound: ; e805c
; called once per frame
; no use updating audio if it's not playing
ld a, [MusicPlaying]