[Scummvm-cvs-logs] CVS: scummvm/gui options.cpp,1.48,1.49

Nicolas Bacca arisme at users.sourceforge.net
Tue Feb 24 14:11:12 CET 2004


Update of /cvsroot/scummvm/scummvm/gui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1246

Modified Files:
	options.cpp 
Log Message:
Fix graphic options on WinCE

Index: options.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/options.cpp,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- options.cpp	22 Feb 2004 21:01:40 -0000	1.48
+++ options.cpp	24 Feb 2004 21:56:16 -0000	1.49
@@ -275,7 +275,6 @@
                 gm++;
         }
 
-#ifndef _WIN32_WCE
 	// Fullscreen checkbox
 	_fullscreenCheckbox = new CheckboxWidget(boss, x, yoffset, w, 16, "Fullscreen mode");
 	yoffset += 16;
@@ -283,6 +282,11 @@
 	// Aspect ratio checkbox
 	_aspectCheckbox = new CheckboxWidget(boss, x, yoffset, w, 16, "Aspect ratio correction");
 	yoffset += 16;
+
+#ifdef _WIN32_WCE
+	_fullscreenCheckbox->setState(TRUE);
+	_fullscreenCheckbox->setEnabled(FALSE);
+	_aspectCheckbox->setEnabled(FALSE);	
 #endif
 	
 	_enableGraphicSettings = true;





More information about the Scummvm-git-logs mailing list