summaryrefslogtreecommitdiff
path: root/main.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 /main.asm
parent9e81c46cbfa09805eb5503ee6e32b3d4a9eeb6a0 (diff)
parent946a213f09db39243c883ad677a22de738977836 (diff)
Merge commit '946a213f' into merge-mrwint
Diffstat (limited to 'main.asm')
-rw-r--r--main.asm18
1 files changed, 9 insertions, 9 deletions
diff --git a/main.asm b/main.asm
index 8ce52e9cf..65fb85811 100644
--- a/main.asm
+++ b/main.asm
@@ -2975,7 +2975,7 @@ Function3b3c: ; 3b3c
; 3b4e
-CleanSoundRestart: ; 3b4e
+SoundRestart: ; 3b4e
push hl
push de
@@ -2984,11 +2984,11 @@ CleanSoundRestart: ; 3b4e
ld a, [hROMBank]
push af
- ld a, BANK(SoundRestart)
+ ld a, BANK(_SoundRestart)
ld [hROMBank], a
ld [MBC3RomBank], a
- call SoundRestart
+ call _SoundRestart
pop af
ld [hROMBank], a
@@ -3002,7 +3002,7 @@ CleanSoundRestart: ; 3b4e
; 3b6a
-CleanUpdateSound: ; 3b6a
+UpdateSound: ; 3b6a
push hl
push de
@@ -3011,11 +3011,11 @@ CleanUpdateSound: ; 3b6a
ld a, [hROMBank]
push af
- ld a, BANK(UpdateSound)
+ ld a, BANK(_UpdateSound)
ld [hROMBank], a
ld [MBC3RomBank], a
- call UpdateSound
+ call _UpdateSound
pop af
ld [hROMBank], a
@@ -3055,7 +3055,7 @@ PlayMusic: ; 3b97
ld a, [hROMBank]
push af
- ld a, BANK(_PlayMusic) ; and BANK(SoundRestart)
+ ld a, BANK(_PlayMusic) ; and BANK(_SoundRestart)
ld [hROMBank], a
ld [MBC3RomBank], a
@@ -3067,7 +3067,7 @@ PlayMusic: ; 3b97
jr .end
.nomusic
- call SoundRestart
+ call _SoundRestart
.end
pop af
@@ -3306,7 +3306,7 @@ Function3cb4: ; 3cb4
and a
ret z
dec a
- call CleanUpdateSound
+ call UpdateSound
jr .asm_3cb4
; 3cbc