You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
Prefix wram labels with w, part 1.
Handle edge cases first.
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user