summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authoratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-26 21:28:02 +0000
committeratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-26 21:28:02 +0000
commit5bb96352b93c86be3cf5ab7fff55473dd6208ca6 (patch)
tree9ccebe82fa9de26c8a06a3f626454168b27ba2c7 /libvo
parent2f0ba8efdb9c44f1fc7f63779173dc5090c942ae (diff)
downloadmpv-5bb96352b93c86be3cf5ab7fff55473dd6208ca6.tar.bz2
mpv-5bb96352b93c86be3cf5ab7fff55473dd6208ca6.tar.xz
-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
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_sdl.c6
1 files 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;