854846e
diff -up SDL-1.2.13/src/audio/SDL_audio.c.audiodriver SDL-1.2.13/src/audio/SDL_audio.c
854846e
--- SDL-1.2.13/src/audio/SDL_audio.c.audiodriver	2007-12-31 05:47:59.000000000 +0100
854846e
+++ SDL-1.2.13/src/audio/SDL_audio.c	2008-09-01 14:53:58.000000000 +0200
854846e
@@ -36,6 +36,12 @@
854846e
 
854846e
 /* Available audio drivers */
854846e
 static AudioBootStrap *bootstrap[] = {
854846e
+#if SDL_AUDIO_DRIVER_PULSE
854846e
+	&PULSE_bootstrap,
854846e
+#endif
854846e
+#if SDL_AUDIO_DRIVER_ALSA
854846e
+	&ALSA_bootstrap,
854846e
+#endif
854846e
 #if SDL_AUDIO_DRIVER_BSD
854846e
 	&BSD_AUDIO_bootstrap,
854846e
 #endif
854846e
@@ -43,12 +49,6 @@ static AudioBootStrap *bootstrap[] = {
854846e
 	&DSP_bootstrap,
854846e
 	&DMA_bootstrap,
854846e
 #endif
854846e
-#if SDL_AUDIO_DRIVER_ALSA
854846e
-	&ALSA_bootstrap,
854846e
-#endif
854846e
-#if SDL_AUDIO_DRIVER_PULSE
854846e
-	&PULSE_bootstrap,
854846e
-#endif
854846e
 #if SDL_AUDIO_DRIVER_QNXNTO
854846e
 	&QNXNTOAUDIO_bootstrap,
854846e
 #endif