From 5a1f20a999aa0ecbb994087511a2c446cf19c8db Mon Sep 17 00:00:00 2001 From: Ethan O'Brien <77750390+ethanaobrien@users.noreply.github.com> Date: Fri, 14 Jul 2023 13:47:59 -0500 Subject: [PATCH] Cleanup --- audio/drivers/openal.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/audio/drivers/openal.c b/audio/drivers/openal.c index 35610b2f32..4c4f85bb8f 100644 --- a/audio/drivers/openal.c +++ b/audio/drivers/openal.c @@ -237,11 +237,7 @@ static bool al_start(void *data, bool is_shutdown) { al_t *al = (al_t*)data; if (al) -#ifdef EMSCRIPTEN //NEVER EVER BLOCK THE MAIN THREAD!! Emscripten will handle this for us :) - al->nonblock = true; -#else al->nonblock = state; -#endif return true; }