changeset 8729:561aa9c850f7

Rearrange the vo and ao driver order to prefer the native drivers and give a better out of the box experience on Cygwin.
author diego
date Fri, 03 Jan 2003 05:10:44 +0000
parents 7cfadbe294bf
children 9032b2e79480
files libao2/audio_out.c libvo/video_out.c
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/libao2/audio_out.c	Thu Jan 02 23:57:38 2003 +0000
+++ b/libao2/audio_out.c	Fri Jan 03 05:10:44 2003 +0000
@@ -60,6 +60,9 @@
         &audio_out_dxr2,
 #endif
 // native:
+#ifdef HAVE_WIN32WAVEOUT
+        &audio_out_win32,
+#endif
 #ifdef USE_OSS_AUDIO
         &audio_out_oss,
 #endif
@@ -75,9 +78,6 @@
 #ifdef USE_SUN_AUDIO
         &audio_out_sun,
 #endif
-#ifdef HAVE_WIN32WAVEOUT
-        &audio_out_win32,
-#endif
 // wrappers:
 #ifdef USE_ARTS
         &audio_out_arts,
--- a/libvo/video_out.c	Thu Jan 02 23:57:38 2003 +0000
+++ b/libvo/video_out.c	Fri Jan 03 05:10:44 2003 +0000
@@ -102,6 +102,9 @@
 
 vo_functions_t* video_out_drivers[] =
 {
+#ifdef HAVE_DIRECTX
+        &video_out_directx,
+#endif
 #ifdef HAVE_XMGA
         &video_out_xmga,
 #endif
@@ -134,9 +137,6 @@
 #ifdef HAVE_SDL
         &video_out_sdl,
 #endif
-#ifdef HAVE_DIRECTX
-        &video_out_directx,
-#endif
 #ifdef HAVE_GGI
 	&video_out_ggi,
 #endif