From 24df68f4e4c1cccb32d28c07295689db88da21d9 Mon Sep 17 00:00:00 2001 From: BinBashBanana <51469593+BinBashBanana@users.noreply.github.com> Date: Mon, 15 Sep 2025 14:50:36 -0700 Subject: [PATCH] Fix OpenAL blocking regression --- audio/drivers/openal.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/audio/drivers/openal.c b/audio/drivers/openal.c index 735c6d8ba5b4..be6c1f6572bb 100644 --- a/audio/drivers/openal.c +++ b/audio/drivers/openal.c @@ -237,15 +237,11 @@ static bool al_get_buffer(al_t *al, ALuint *buffer) if (al_unqueue_buffers(al)) break; -#ifndef EMSCRIPTEN if (al->nonblock) -#endif return false; -#ifndef _WIN32 /* Must sleep as there is no proper blocking method. */ retro_sleep(1); -#endif } *buffer = al->res_buf[--al->res_ptr];