Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release-src > by-pkgid > bcb34a91b774ff74870fd0c0086a1a54 > files > 5

SDL12-1.2.15-16.mga5.src.rpm

Index: SDL-1.2/src/audio/SDL_audio.c
===================================================================
--- SDL-1.2/src/audio/SDL_audio.c	(revision 4019)
+++ SDL-1.2/src/audio/SDL_audio.c	(working copy)
@@ -36,19 +36,28 @@
 
 /* Available audio drivers */
 static AudioBootStrap *bootstrap[] = {
-#if SDL_AUDIO_DRIVER_BSD
-	&BSD_AUDIO_bootstrap,
+#if SDL_AUDIO_DRIVER_PULSE
+	&PULSE_bootstrap,
 #endif
+#if SDL_AUDIO_DRIVER_ESD
+	&ESD_bootstrap,
+#endif
+#if SDL_AUDIO_DRIVER_ALSA
+	&ALSA_bootstrap,
+#endif
+#if SDL_AUDIO_DRIVER_ARTS
+	&ARTS_bootstrap,
+#endif
+#if SDL_AUDIO_DRIVER_NAS
+	&NAS_bootstrap,
+#endif
 #if SDL_AUDIO_DRIVER_OSS
 	&DSP_bootstrap,
 	&DMA_bootstrap,
 #endif
-#if SDL_AUDIO_DRIVER_ALSA
-	&ALSA_bootstrap,
+#if SDL_AUDIO_DRIVER_BSD
+	&BSD_AUDIO_bootstrap,
 #endif
-#if SDL_AUDIO_DRIVER_PULSE
-	&PULSE_bootstrap,
-#endif
 #if SDL_AUDIO_DRIVER_QNXNTO
 	&QNXNTOAUDIO_bootstrap,
 #endif
@@ -58,15 +67,6 @@
 #if SDL_AUDIO_DRIVER_DMEDIA
 	&DMEDIA_bootstrap,
 #endif
-#if SDL_AUDIO_DRIVER_ARTS
-	&ARTS_bootstrap,
-#endif
-#if SDL_AUDIO_DRIVER_ESD
-	&ESD_bootstrap,
-#endif
-#if SDL_AUDIO_DRIVER_NAS
-	&NAS_bootstrap,
-#endif
 #if SDL_AUDIO_DRIVER_DSOUND
 	&DSOUND_bootstrap,
 #endif