diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-07-22 19:07:13 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-07-22 19:07:13 +0000 |
commit | bf366b0d9df31f936d8e7c0cec1695daf040f0f6 (patch) | |
tree | a25eba3dc07348b3f722a72e78a4b990362b53d7 /libvo | |
parent | 963cbe6cd49c227333745ab3682055f2fb7a0f3f (diff) | |
download | mpv-bf366b0d9df31f936d8e7c0cec1695daf040f0f6.tar.bz2 mpv-bf366b0d9df31f936d8e7c0cec1695daf040f0f6.tar.xz |
fix for people experimenting with GUI under windows
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12886 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/vo_gl2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_gl2.c b/libvo/vo_gl2.c index fbf90b6a0f..7d9849b6d8 100644 --- a/libvo/vo_gl2.c +++ b/libvo/vo_gl2.c @@ -872,7 +872,7 @@ config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uin aspect(&d_width,&d_height,A_NOZOOM); -#ifdef HAVE_NEW_GUI +#if defined(HAVE_NEW_GUI) && !defined(GL_WIN32) if (use_gui) { if (config_glx_gui(d_width, d_height) == -1) return -1; |