Converts wav files to ogg

This commit is contained in:
Josh Perez
2023-05-09 11:51:11 -04:00
committed by GitHub
parent 7b039fa526
commit 8761bb8dae
7 changed files with 30 additions and 13 deletions

View File

@@ -112,7 +112,7 @@ export class Sound {
}
if (soundStyle === SoundType.Pop) {
return 'sounds/pop.wav';
return 'sounds/pop.ogg';
}
if (soundStyle === SoundType.TriTone) {
@@ -132,7 +132,7 @@ export class Sound {
}
if (soundStyle === SoundType.Whoosh) {
return 'sounds/whoosh.wav';
return 'sounds/whoosh.ogg';
}
throw missingCaseError(soundStyle);