From b024134c6aa6a62cd037095233bb100af451defc Mon Sep 17 00:00:00 2001 From: Darkvater Date: Sat, 3 Mar 2007 13:13:25 +0000 Subject: (svn r8994) -Fix [FS642, r3320]: [win32] Resolution doubled in cfg file when fullscreen mode used. Use _wnd.double_size which gives back its correct state with respect to double size and fullscreen. --- src/video/win32_v.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/video/win32_v.cpp') diff --git a/src/video/win32_v.cpp b/src/video/win32_v.cpp index 1e811d1c9..b23d57ac5 100644 --- a/src/video/win32_v.cpp +++ b/src/video/win32_v.cpp @@ -758,7 +758,7 @@ static void Win32GdiStop(void) #if !defined(WINCE) if (_wnd.fullscreen) ChangeDisplaySettings(NULL, 0); #endif - if (_double_size) { + if (_wnd.double_size) { _cur_resolution[0] *= 2; _cur_resolution[1] *= 2; } -- cgit v1.2.3-54-g00ecf