summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-24 05:58:09 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-24 05:58:09 +0000
commit8c0b63a38a610784cf43818383188ed0c1655123 (patch)
tree79e5950f80e169b17e06b27ac468f6287d4395f0 /libvo
parentd61c64bfdaf7198aea3137aa9eae6b1553df3471 (diff)
downloadmpv-8c0b63a38a610784cf43818383188ed0c1655123.tar.bz2
mpv-8c0b63a38a610784cf43818383188ed0c1655123.tar.xz
-xy-x-y bug fixed.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@612 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 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;