changeset 27922:ea21f6e033ec

100l, the video_out_drivers list must be sorted by priority, not alphabetically. For now, vo_directx should be preferred over vo_direct3d.
author reimar
date Tue, 18 Nov 2008 13:18:55 +0000
parents 327a98d2b55d
children 17b82082ac4a
files libvo/video_out.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/video_out.c	Tue Nov 18 12:23:42 2008 +0000
+++ b/libvo/video_out.c	Tue Nov 18 13:18:55 2008 +0000
@@ -123,12 +123,12 @@
 #ifdef CONFIG_TDFX_VID
         &video_out_tdfx_vid,
 #endif
+#ifdef CONFIG_DIRECTX
+        &video_out_directx,
+#endif
 #ifdef CONFIG_DIRECT3D
         &video_out_direct3d,
 #endif
-#ifdef CONFIG_DIRECTX
-        &video_out_directx,
-#endif
 #ifdef CONFIG_COREVIDEO
 	&video_out_macosx,
 #endif