Browse Source

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

Sam Lantinga 3 years ago
parent
commit
a485ffc3c8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/audio/emscripten/SDL_emscriptenaudio.c

+ 2 - 2
src/audio/emscripten/SDL_emscriptenaudio.c

@@ -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;