diff options
author | yenatch <yenatch@gmail.com> | 2013-10-11 02:49:08 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-10-11 02:55:01 -0400 |
commit | 946a213f09db39243c883ad677a22de738977836 (patch) | |
tree | d91d86afc81cd9265e47df9929539c1c15274303 /audio/engine.asm | |
parent | 66ef18384779629d3653892c0cfa821ced6ad3c5 (diff) |
fix labels for SoundRestart and UpdateSound
Diffstat (limited to 'audio/engine.asm')
-rw-r--r-- | audio/engine.asm | 7 |
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] |