summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authornplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-06-17 01:07:53 +0000
committernplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-06-17 01:07:53 +0000
commit84f523587ee58800d4f4c22484844c3122aefc30 (patch)
tree8f9d0b6a32a81bddb51f939f9c7f0956c8306490 /libvo
parent20212aca55d43b9f58db7a8c8bd99d9de6f5054b (diff)
downloadmpv-84f523587ee58800d4f4c22484844c3122aefc30.tar.bz2
mpv-84f523587ee58800d4f4c22484844c3122aefc30.tar.xz
moved vo_quartz higher in the list
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12602 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/video_out.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 18f7122708..470166b605 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -132,6 +132,9 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_DIRECTX
&video_out_directx,
#endif
+#ifdef MACOSX
+ &video_out_quartz,
+#endif
#ifdef HAVE_XMGA
&video_out_xmga,
#endif
@@ -167,9 +170,6 @@ vo_functions_t* video_out_drivers[] =
&video_out_dga,
// &video_out_fsdga,
#endif
-#ifdef MACOSX
- &video_out_quartz,
-#endif
#ifdef HAVE_SDL
&video_out_sdl,
#endif