changeset 1725:24e75b632740

Move the sun audio driver near the start of the list of audio drivers, so that it has priority over the 'null' driver. On solaris (without OSS drivers), the sun audio driver is now the default audio driver.
author jkeil
date Tue, 28 Aug 2001 10:54:31 +0000
parents bbd054c2cc20
children 38871427a131
files libao2/audio_out.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libao2/audio_out.c	Tue Aug 28 08:06:26 2001 +0000
+++ b/libao2/audio_out.c	Tue Aug 28 10:54:31 2001 +0000
@@ -42,6 +42,9 @@
 #ifdef USE_OSS_AUDIO
         &audio_out_oss,
 #endif
+#ifdef USE_SUN_AUDIO
+        &audio_out_sun,
+#endif
         &audio_out_null,
 #ifdef HAVE_ALSA5
 	&audio_out_alsa5,
@@ -55,9 +58,6 @@
 #ifdef HAVE_SDL
         &audio_out_sdl,
 #endif
-#ifdef USE_SUN_AUDIO
-        &audio_out_sun,
-#endif
 	&audio_out_pcm,
 //	&audio_out_pss,
 	NULL