Skip to content

Commit

Permalink
Use only beeps
Browse files Browse the repository at this point in the history
  • Loading branch information
loucass003 committed Feb 3, 2025
1 parent 09ce888 commit e65eac8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gui/src/sounds/sounds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ function restartAndPlay(audio: HTMLAudioElement, volume: number) {
export function playSoundOnResetEnded(resetType: ResetType, volume = 1) {
switch (resetType) {
case ResetType.Yaw: {
restartAndPlay(quickResetStartedSound, volume);
restartAndPlay(tapSetupSound2, volume);
break;
}
case ResetType.Full: {
restartAndPlay(fullResetStartedSound, volume);
restartAndPlay(tapSetupSound3, volume);
break;
}
case ResetType.Mounting: {
restartAndPlay(mountingResetStartedSound, volume);
restartAndPlay(tapSetupSound4, volume);
break;
}
}
Expand Down

0 comments on commit e65eac8

Please sign in to comment.