Skip to content

Commit

Permalink
fix: replace click sound
Browse files Browse the repository at this point in the history
  • Loading branch information
eri24816 committed Apr 22, 2024
1 parent f3a20b3 commit bb98bd4
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 1 deletion.
Binary file removed frontend/dist/click.mp3
Binary file not shown.
Binary file removed frontend/dist/click0.mp3
Binary file not shown.
Binary file added frontend/dist/click1.mp3
Binary file not shown.
2 changes: 1 addition & 1 deletion frontend/src/ui_utils/soundManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { as } from "../utils"
export class SoundManager {
click: HTMLAudioElement;
constructor() {
this.click = new Audio("click.mp3");
this.click = new Audio("click1.mp3");
this.click.volume = 0.5;
}
playClick() {
Expand Down

0 comments on commit bb98bd4

Please sign in to comment.