# HG changeset patch # User Sam Lantinga # Date 1279476747 25200 # Node ID 963f939494a1cdf5175285c5424bf8154cbacf74 # Parent 6f0706a601460cf944cbc6e37057c555b8414d86 RedHat patch: SDL-1.2.14-audiodriver.patch diff -r 6f0706a60146 -r 963f939494a1 src/audio/SDL_audio.c --- a/src/audio/SDL_audio.c Sun Jul 18 11:11:37 2010 -0700 +++ b/src/audio/SDL_audio.c Sun Jul 18 11:12:27 2010 -0700 @@ -36,15 +36,15 @@ /* Available audio drivers */ static AudioBootStrap *bootstrap[] = { -#if SDL_AUDIO_DRIVER_BSD - &BSD_AUDIO_bootstrap, -#endif #if SDL_AUDIO_DRIVER_PULSE &PULSE_bootstrap, #endif #if SDL_AUDIO_DRIVER_ALSA &ALSA_bootstrap, #endif +#if SDL_AUDIO_DRIVER_BSD + &BSD_AUDIO_bootstrap, +#endif #if SDL_AUDIO_DRIVER_OSS &DSP_bootstrap, &DMA_bootstrap,