From a6a85588b8c6cdb317fd126619cfe444779017c9 Mon Sep 17 00:00:00 2001 From: Isaac0-dev <62234577+Isaac0-dev@users.noreply.github.com> Date: Thu, 24 Jul 2025 11:46:08 +1000 Subject: [PATCH] oh i actually pushed that --- src/pc/audio/audio_sdl2.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/pc/audio/audio_sdl2.c b/src/pc/audio/audio_sdl2.c index f8451e2c6..696c28ebb 100644 --- a/src/pc/audio/audio_sdl2.c +++ b/src/pc/audio/audio_sdl2.c @@ -8,10 +8,6 @@ static SDL_AudioDeviceID dev; static bool audio_sdl_init(void) { - if (!getenv("SDL_AUDIODRIVER")) { - setenv("SDL_AUDIODRIVER", "alsa", 1); - } - if (SDL_Init(SDL_INIT_AUDIO) != 0) { fprintf(stderr, "SDL init error: %s\n", SDL_GetError()); return false;