Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions nullsound/volume.s
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,12 @@ state_volume_adpcm_a_master_ramp::


init_volume_state_tracker::
;; reset music volume to max (no attenuation)
;; reset music volume to max (no attenuation), start unmuted
ld a, #0x0f
ld (state_volume_music_level), a
ld (state_volume_muted), a
Comment thread
dogruis marked this conversation as resolved.
ld (state_volume_mute_level), a
xor a
ld (state_volume_muted), a
;; reset channel levels
ld a, #0
ld (state_fm_volume_attenuation), a
Expand Down