diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-02-09 14:15:31 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-02-09 14:15:31 +0100 |
commit | 91b7ddeb1aa01c115e5f5a6cbbea8c4b1b60612c (patch) | |
tree | cd0189e01cb63ba43e3c9447cd1dafede4ba463f /src/audio/music2.asm | |
parent | aca8305c725c1d14ff574e3c2d6708f914b1d5a7 (diff) |
Consistent Music/SFX label names and more Home disasm
Diffstat (limited to 'src/audio/music2.asm')
-rwxr-xr-x | src/audio/music2.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/audio/music2.asm b/src/audio/music2.asm index 3af0181..ddae2bb 100755 --- a/src/audio/music2.asm +++ b/src/audio/music2.asm @@ -8,7 +8,7 @@ Func_f8006: ; f8006 (3e:4006) jp Music2_PlaySong Func_f8009: ; f8009 (3e:4009) - jp Func_f802d + jp Music2_PlaySFX Func_f800c: ; f800c (3e:400c) jp Func_f804e @@ -41,7 +41,7 @@ Music2_PlaySong: ; f8021 (3e:4021) pop hl ret -Func_f802d: ; f802d (3e:402d) +Music2_PlaySFX: ; f802d (3e:402d) push bc push hl ld b, $0 @@ -165,7 +165,7 @@ Music2_Init: ; f807d (3e:407d) Music2_Update: ; f80e9 (3e:40e9) call Music2_EmptyFunc call Music2_CheckForNewSound - ld hl, Func_fc003 + ld hl, SFX_UpdateSFX call Bankswitch3dTo3f ld a, [wCurSongBank] ldh [hBankROM], a @@ -200,7 +200,7 @@ Music2_CheckForNewSound: ; f811c (3e:411c) rla jr c, .noNewSound ld a, [wCurSfxID] - ld hl, Func_fc000 + ld hl, SFX_PlaySFX call Bankswitch3dTo3f ld a, [wCurSfxID] or $80 |