diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-01-04 20:08:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-04 20:08:43 -0500 |
commit | 94ebdab6d350fd6ebfd43c5a84710ed14dade8ca (patch) | |
tree | a3b0d23a7501a337fb150ffb9253b3d5a301c657 /audio/engine.asm | |
parent | 9aeb0ab522ad36796b2ace55cca17e7314a3bc9a (diff) | |
parent | 739a60b33c54021c975f22d627e4b5e40206fe37 (diff) |
Merge pull request #660 from mid-kid/master
Make the map setup commands match the actual function names better
Diffstat (limited to 'audio/engine.asm')
-rw-r--r-- | audio/engine.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/engine.asm b/audio/engine.asm index 748e17361..ec0252982 100644 --- a/audio/engine.asm +++ b/audio/engine.asm @@ -6,7 +6,7 @@ ; FadeMusic ; PlayStereoSFX -_MapSetup_Sound_Off:: +_InitSound:: ; restart sound operation ; clear all relevant hardware registers & wram push hl @@ -62,7 +62,7 @@ MusicFadeRestart: push af ld a, [wMusicFadeID] push af - call _MapSetup_Sound_Off + call _InitSound pop af ld [wMusicFadeID], a pop af @@ -2797,7 +2797,7 @@ ChannelPointers: ClearChannels:: ; runs ClearChannel for all 4 channels -; doesn't seem to be used, but functionally identical to MapSetup_Sound_Off +; doesn't seem to be used, but functionally identical to InitSound ld hl, rNR50 xor a ld [hli], a |