[Scummvm-cvs-logs] CVS: scummvm/gui options.cpp,1.47,1.47.2.1

Nicolas Bacca arisme at users.sourceforge.net
Tue Feb 24 14:09:07 CET 2004


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

Modified Files:
      Tag: branch-0-6-0
	options.cpp 
Log Message:
Fix graphic options on WinCE

Index: options.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/options.cpp,v
retrieving revision 1.47
retrieving revision 1.47.2.1
diff -u -d -r1.47 -r1.47.2.1
--- options.cpp	26 Jan 2004 07:36:47 -0000	1.47
+++ options.cpp	24 Feb 2004 21:54:09 -0000	1.47.2.1
@@ -275,7 +275,6 @@
                 gm++;
         }
 
-#ifndef _WIN32_WCE
 	// Fullscreen checkbox
 	_fullscreenCheckbox = new CheckboxWidget(boss, x, yoffset, w, 16, "Fullscreen mode");
 	yoffset += 16;
@@ -283,8 +282,13 @@
 	// 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;
 
 	return yoffset;





More information about the Scummvm-git-logs mailing list