From 5bb96352b93c86be3cf5ab7fff55473dd6208ca6 Mon Sep 17 00:00:00 2001 From: atmosfear Date: Thu, 26 Apr 2001 21:28:02 +0000 Subject: [PATCH] -x -y quickfix for release, code will be changed completely later. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@649 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_sdl.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libvo/vo_sdl.c b/libvo/vo_sdl.c index 9c43d57c79..d234187b05 100644 --- a/libvo/vo_sdl.c +++ b/libvo/vo_sdl.c @@ -523,8 +523,10 @@ init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint3 /* Save the original Image size */ - priv->width = d_width ? d_width : width; - priv->height = d_height ? d_height : height; + //priv->width = d_width ? d_width : width; + //priv->height = d_height ? d_height : height; + priv->width = width; + priv->height = height; priv->format = format; priv->windowsize.w = d_width ? d_width : width; priv->windowsize.h = d_height ? d_height : height;