# HG changeset patch # User Darkvater # Date 2007-03-03 13:13:25 # Node ID 844a412e3a8c33619703c81c647a7512fbedc123 # Parent f2654ddb246089cfab1048c124da7ac5f5094825 (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. diff --git a/src/video/win32_v.cpp b/src/video/win32_v.cpp --- 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; }