mist: selena: disable sounds in sound puzzle for now

was not able to get proper sounding sounds
This commit is contained in:
Vince Weaver 2020-08-01 01:30:04 -04:00
parent 2024e6edc2
commit aba8443d22

View File

@ -814,75 +814,75 @@ done_tunnel_button_pressed:
; water #1 ; water #1
play_water_noise: play_water_noise:
lda #NOTE_E3 ; lda #NOTE_E3
sta speaker_frequency ; sta speaker_frequency
lda #15 ; lda #15
sta speaker_duration ; sta speaker_duration
jsr speaker_tone ; jsr speaker_tone
rts rts
; fire #2 ; fire #2
play_chasm_noise: play_chasm_noise:
lda #NOTE_D3 ; lda #NOTE_D3
sta speaker_frequency ; sta speaker_frequency
lda #15 ; lda #15
sta speaker_duration ; sta speaker_duration
jsr speaker_tone ; jsr speaker_tone
rts rts
; clock #3 ; clock #3
play_clock_noise: play_clock_noise:
ldx #5 ; ldx #5
clock_noise_loop: ;clock_noise_loop:
jsr click_speaker ; jsr click_speaker
lda #200 ; lda #200
jsr WAIT ; jsr WAIT
dex ; dex
bne clock_noise_loop ; bne clock_noise_loop
rts rts
; whistle #4 ; whistle #4
play_crystal_noise: play_crystal_noise:
lda #NOTE_E3 ; lda #NOTE_E3
sta speaker_frequency ; sta speaker_frequency
lda #10 ; lda #10
sta speaker_duration ; sta speaker_duration
jsr speaker_tone ; jsr speaker_tone
lda #NOTE_E4 ; lda #NOTE_E4
sta speaker_frequency ; sta speaker_frequency
lda #10 ; lda #10
sta speaker_duration ; sta speaker_duration
jsr speaker_tone ; jsr speaker_tone
rts rts
; tunnel #5 ; tunnel #5
play_tunnel_noise: play_tunnel_noise:
lda #NOTE_C3 ; lda #NOTE_C3
sta speaker_frequency ; sta speaker_frequency
lda #15 ; lda #15
sta speaker_duration ; sta speaker_duration
jsr speaker_tone ; jsr speaker_tone
rts rts
@ -950,8 +950,8 @@ tunnel_bg_sprite:
.byte $df,$fd,$fd,$ff,$fd,$ff,$fd,$ff,$dd .byte $df,$fd,$fd,$ff,$fd,$ff,$fd,$ff,$dd
.byte $8d,$8d,$8f,$8f,$8f,$8f,$8d,$8d,$8d .byte $8d,$8d,$8f,$8f,$8f,$8f,$8d,$8d,$8d
.byte $22,$22,$22,$82,$82,$02,$22,$22,$22 .byte $22,$22,$22,$82,$82,$02,$22,$22,$22
.byte $88,$80,$88,$88,$88,$88,$80,$88,$11 .byte $88,$80,$88,$88,$88,$88,$80,$88,$22
.byte $08,$88,$11,$11,$11,$88,$08,$88,$11 .byte $08,$88,$11,$11,$11,$88,$08,$88,$22
; control panel ; control panel