summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-03 13:12:46 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-03 13:12:46 +0000
commit5e1d8aafed1cf7c3d67345a7be1a1c06c53ade77 (patch)
tree174a26e12102e92046dc376f211fdf80b6cf8ca9 /Gui
parent5568a8133ad5cdb906bb2baef065fd605fe395ee (diff)
downloadmpv-5e1d8aafed1cf7c3d67345a7be1a1c06c53ade77.tar.bz2
mpv-5e1d8aafed1cf7c3d67345a7be1a1c06c53ade77.tar.xz
fix aspect ratio handling
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5946 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gui/interface.c b/Gui/interface.c
index 76939f43ad..da5703d516 100644
--- a/Gui/interface.c
+++ b/Gui/interface.c
@@ -99,7 +99,7 @@ void guiGetEvent( int type,char * arg )
if ( arg )
{
tmp_sh_video_t * sh_video = (tmp_sh_video_t *)arg;
- mplResizeToMovieSize( sh_video->disp_w,sh_video->disp_h );
+ mplResizeToMovieSize( vo_dwidth,vo_dheight );
guiIntfStruct.MovieWidth=sh_video->disp_w;
guiIntfStruct.MovieHeight=sh_video->disp_h;
}