summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-14 11:23:03 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-14 11:23:03 +0000
commit9e88af0e0c953543c50b2b8c415b425639517a17 (patch)
treeb61d0d4bfb42a1672cbe3c4f476cf0619b427311 /libvo
parent87fe226acbf8b02d99260e5fb3844fbc223b9dab (diff)
downloadmpv-9e88af0e0c953543c50b2b8c415b425639517a17.tar.bz2
mpv-9e88af0e0c953543c50b2b8c415b425639517a17.tar.xz
10l, forgot to move aspect_save_screenres in last commit
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18090 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/w32_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/w32_common.c b/libvo/w32_common.c
index 1794eef714..becd1d6eec 100644
--- a/libvo/w32_common.c
+++ b/libvo/w32_common.c
@@ -148,7 +148,6 @@ static void updateScreenProperties() {
vo_screenwidth = dm.dmPelsWidth;
vo_screenheight = dm.dmPelsHeight;
vo_depthonscreen = dm.dmBitsPerPel;
- aspect_save_screenres(vo_screenwidth, vo_screenheight);
vo_screenx = vo_screeny = 0;
if (myMonitorFromWindow && myGetMonitorInfo) {
MONITORINFO mi;
@@ -160,6 +159,7 @@ static void updateScreenProperties() {
vo_screenwidth = mi.rcMonitor.right - mi.rcMonitor.left;
vo_screenheight = mi.rcMonitor.bottom - mi.rcMonitor.top;
}
+ aspect_save_screenres(vo_screenwidth, vo_screenheight);
}
static void changeMode(void) {