summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-01-23 16:45:34 -0500
committerluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-01-23 16:45:34 -0500
commitf2ae74079fc917cbf7e1f640eb8beda0d4740887 (patch)
treed1982b2f1c0c23e1b274ed84db330351d4f4806b /home
parentc60f1331fef22b886adf3472d2b4f348832cfaf7 (diff)
Prefix wram labels with w, part 1.
Handle edge cases first.
Diffstat (limited to 'home')
-rw-r--r--home/audio.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/home/audio.asm b/home/audio.asm
index 44786ee29..307af3b8c 100644
--- a/home/audio.asm
+++ b/home/audio.asm
@@ -296,19 +296,19 @@ IsSFXPlaying:: ; 3c74
MaxVolume:: ; 3c97
ld a, MAX_VOLUME
- ld [Volume], a
+ ld [wVolume], a
ret
; 3c9d
LowVolume:: ; 3c9d
ld a, $33 ; 40%
- ld [Volume], a
+ ld [wVolume], a
ret
; 3ca3
VolumeOff:: ; 3ca3
xor a
- ld [Volume], a
+ ld [wVolume], a
ret
; 3ca8