This commit is contained in:
Adam D. Ruppe 2025-02-08 15:45:11 -05:00
parent e592a3a0ac
commit 08a584f7f0
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class Audio{
active = false;
return;
}
if(Mix_OpenAudio(22050, AUDIO_S16SYS, 2, 4096/2 /* the /2 is new */) != 0){
if(1) { // if(Mix_OpenAudio(22050, AUDIO_S16SYS, 2, 4096/2 /* the /2 is new */) != 0){
active = false; //throw new Error;
error = true;
audioIsLoaded = false;