summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-28 18:03:34 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-28 18:03:34 +0000
commit253c9833b7bafd334d975ebeb5a91e5b08687f1b (patch)
tree532e894ba97ba60de450455116c49265dec48182 /libvo
parent4eb5fc7dea70dade112091245497deee88d41834 (diff)
downloadmpv-253c9833b7bafd334d975ebeb5a91e5b08687f1b.tar.bz2
mpv-253c9833b7bafd334d975ebeb5a91e5b08687f1b.tar.xz
- fix new afm/vfm support
- fix fullscreen with xv - add cache support git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7527 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_xv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_xv.c b/libvo/vo_xv.c
index f9c2939b5f..09b3d7ea09 100644
--- a/libvo/vo_xv.c
+++ b/libvo/vo_xv.c
@@ -435,7 +435,7 @@ static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32
#endif
aspect(&vo_dwidth,&vo_dheight,A_NOZOOM);
- if ( ( flags&1 )&&( !WinID ) )
+ if ( ( flags&1 )&&( WinID <= 0 ) )
{
aspect(&vo_dwidth,&vo_dheight,A_ZOOM);
drwX=( vo_screenwidth - (vo_dwidth > vo_screenwidth?vo_screenwidth:vo_dwidth) ) / 2;