From 8c0b63a38a610784cf43818383188ed0c1655123 Mon Sep 17 00:00:00 2001 From: pontscho Date: Tue, 24 Apr 2001 05:58:09 +0000 Subject: -xy-x-y bug fixed. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@612 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_xv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libvo/vo_xv.c b/libvo/vo_xv.c index 9c2a826ca9..4f71e456ff 100644 --- a/libvo/vo_xv.c +++ b/libvo/vo_xv.c @@ -118,8 +118,8 @@ static uint32_t init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t hint.x = 0; hint.y = 0; - hint.width = image_width; - hint.height = image_height; + hint.width = d_width; + hint.height = d_height; if ( fullscreen ) { hint.width=vo_screenwidth; -- cgit v1.2.3