changeset 4548:b135d19f9764

RedHat patch: SDL-1.2.14-audiodriver.patch
author Sam Lantinga <slouken@libsdl.org>
date Sun, 18 Jul 2010 11:13:12 -0700
parents af1d018ebbe6
children 80277d92551b
files src/audio/SDL_audio.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/audio/SDL_audio.c	Sun Jul 18 10:26:46 2010 -0700
+++ b/src/audio/SDL_audio.c	Sun Jul 18 11:13:12 2010 -0700
@@ -73,15 +73,15 @@
 
 /* Available audio drivers */
 static const AudioBootStrap *const bootstrap[] = {
-#if SDL_AUDIO_DRIVER_BSD
-    &BSD_AUDIO_bootstrap,
-#endif
 #if SDL_AUDIO_DRIVER_PULSEAUDIO
     &PULSEAUDIO_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,