Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/bundles/sound/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const recording_signal_ms = 100;
const pre_recording_signal_pause_ms = 200;

function play_recording_signal() {
play(sine_sound(1200, recording_signal_ms / 1000));
play_concurrently(sine_sound(1200, recording_signal_ms / 1000));
}

// eslint-disable-next-line @typescript-eslint/no-shadow
Expand Down
2 changes: 1 addition & 1 deletion src/bundles/stereo_sound/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function start_recording(mediaRecorder: MediaRecorder) {
const recording_signal_duration_ms = 100;

function play_recording_signal() {
play(sine_sound(1200, recording_signal_duration_ms / 1000));
play_concurrently(sine_sound(1200, recording_signal_duration_ms / 1000));
}

// eslint-disable-next-line @typescript-eslint/no-shadow
Expand Down