diff --git a/src/audio/SDL_audio.c b/src/audio/SDL_audio.c index ef93f82817254..f8f24c3920877 100644 --- a/src/audio/SDL_audio.c +++ b/src/audio/SDL_audio.c @@ -30,6 +30,9 @@ static const AudioBootStrap *const bootstrap[] = { #ifdef SDL_AUDIO_DRIVER_PULSEAUDIO &PULSEAUDIO_bootstrap, #endif +#ifdef SDL_AUDIO_DRIVER_PIPEWIRE + &PIPEWIRE_bootstrap, +#endif #ifdef SDL_AUDIO_DRIVER_ALSA &ALSA_bootstrap, #endif @@ -78,9 +81,6 @@ static const AudioBootStrap *const bootstrap[] = { #ifdef SDL_AUDIO_DRIVER_JACK &JACK_bootstrap, #endif -#ifdef SDL_AUDIO_DRIVER_PIPEWIRE - &PIPEWIRE_bootstrap, -#endif #ifdef SDL_AUDIO_DRIVER_OSS &DSP_bootstrap, #endif