From 71fe2624d27eb4bb2ddb24c4ea2659d4118b37af Mon Sep 17 00:00:00 2001 From: Ethan O'Brien <77750390+ethanaobrien@users.noreply.github.com> Date: Fri, 14 Jul 2023 13:56:36 -0500 Subject: [PATCH] Cleanup --- audio/drivers/openal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/drivers/openal.c b/audio/drivers/openal.c index 4c4f85bb8f..e08e69778e 100644 --- a/audio/drivers/openal.c +++ b/audio/drivers/openal.c @@ -237,7 +237,7 @@ static bool al_start(void *data, bool is_shutdown) { al_t *al = (al_t*)data; if (al) - al->nonblock = state; + al->is_paused = false; return true; }