From 7d65c9729621948ba6c23f18b5369c10fb7faa8e Mon Sep 17 00:00:00 2001 From: AliceLR Date: Tue, 5 Nov 2024 03:18:22 -0700 Subject: [PATCH] Remove outdated FIXME from SDL3 audio driver. --- src/audio/driver_sdl3.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/audio/driver_sdl3.c b/src/audio/driver_sdl3.c index 2c17b6c32..d460c6c0a 100644 --- a/src/audio/driver_sdl3.c +++ b/src/audio/driver_sdl3.c @@ -92,7 +92,6 @@ void init_audio_platform(struct config_info *conf) // The buffer frames need to be configured with this hack. // This value may be ignored or modified by some platforms. - // FIXME: SDL drivers for ALSA, Pulseaudio, PipeWire, and JACK all ignore this... snprintf(hint, sizeof(hint), "%u", audio.buffer_frames); SDL_SetHint(SDL_HINT_AUDIO_DEVICE_SAMPLE_FRAMES, hint);