Fix "SDL_FALSE is not defined" runtime error for emscripten.

main
Sam Lantinga 2022-03-19 09:50:22 -07:00
parent d81fee7623
commit a485ffc3c8
1 changed files with 2 additions and 2 deletions

View File

@ -365,7 +365,7 @@ EMSCRIPTENAUDIO_Init(SDL_AudioDriverImpl * impl)
} else if (typeof(webkitAudioContext) !== 'undefined') {
return true;
}
return SDL_FALSE;
return false;
});
if (!available) {
@ -378,7 +378,7 @@ EMSCRIPTENAUDIO_Init(SDL_AudioDriverImpl * impl)
} else if (typeof(navigator.webkitGetUserMedia) !== 'undefined') {
return true;
}
return SDL_FALSE;
return false;
});
impl->HasCaptureSupport = capture_available ? SDL_TRUE : SDL_FALSE;