summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authoral <al@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-09-03 20:22:22 +0000
committeral <al@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-09-03 20:22:22 +0000
commit80098f9851125b475ad60b2b3ba20a5b065ad78c (patch)
treeef996b1505db568ec891eeba89b0845e30eef777 /libvo
parent0d576fb9e52020d65767face4a6be65674c43ba9 (diff)
downloadmpv-80098f9851125b475ad60b2b3ba20a5b065ad78c.tar.bz2
mpv-80098f9851125b475ad60b2b3ba20a5b065ad78c.tar.xz
We don't need to support the old nvidia binary driver bug any longer.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13243 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_xv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_xv.c b/libvo/vo_xv.c
index 0296206cf4..767501ebda 100644
--- a/libvo/vo_xv.c
+++ b/libvo/vo_xv.c
@@ -579,7 +579,7 @@ static void flip_page(void)
xvimage[current_buf], 0, 0, image_width,
image_height, drwX - (vo_panscan_x >> 1),
drwY - (vo_panscan_y >> 1), vo_dwidth + vo_panscan_x,
- (vo_fs ? vo_dheight - 1 : vo_dheight) + vo_panscan_y,
+ vo_dheight + vo_panscan_y,
False);
} else
#endif
@@ -588,7 +588,7 @@ static void flip_page(void)
xvimage[current_buf], 0, 0, image_width, image_height,
drwX - (vo_panscan_x >> 1), drwY - (vo_panscan_y >> 1),
vo_dwidth + vo_panscan_x,
- (vo_fs ? vo_dheight - 1 : vo_dheight) + vo_panscan_y);
+ vo_dheight + vo_panscan_y);
}
if (num_buffers > 1)
{