[Scummvm-cvs-logs] CVS: scummvm gui.cpp,1.65,1.66

Nicolas Bacca arisme at users.sourceforge.net
Sun Aug 4 04:02:03 CEST 2002


Update of /cvsroot/scummvm/scummvm
In directory usw-pr-cvs1:/tmp/cvs-serv15158

Modified Files:
	gui.cpp 
Log Message:
Only displays the Keys option for WinCE

Index: gui.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui.cpp,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -d -r1.65 -r1.66
--- gui.cpp	4 Aug 2002 00:44:49 -0000	1.65
+++ gui.cpp	4 Aug 2002 11:01:16 -0000	1.66
@@ -197,12 +197,21 @@
 };
 
 const GuiWidget options_dialog[] = {
+	// Only display the "Keys" options for WinCE
+#ifdef _WIN32_WCE
 	{GUI_STAT, 0xFF, GWF_DEFAULT, 50, 80, 210, 60, 0, 0},
 	{GUI_CUSTOMTEXT, 0x01, GWF_BUTTON, 50 + 10, 80 + 10, 40, 15, 1, 5, 'S'},	// Sound
 	{GUI_CUSTOMTEXT, 0x01, GWF_BUTTON, 50 + 10 + 40 + 30, 80 + 10, 40, 15, 2, 6, 'K'},	// Keys
 	{GUI_CUSTOMTEXT, 0x01, GWF_BUTTON, 50 + 10 + 40 + 30 + 40 + 30, 80 + 10, 40, 15, 3, 7, 'A'},	// About
 	{GUI_CUSTOMTEXT, 0x01, GWF_BUTTON, 50 + 10, 80 + 10 + 15 + 10, 40, 15, 4, 18, 'M'},	// Misc
 	{0, 0, 0, 0, 0, 0, 0, 0, 0}
+#else
+	{GUI_STAT, 0xFF, GWF_DEFAULT, 50, 80, 210, 40, 0, 0},
+	{GUI_CUSTOMTEXT, 0x01, GWF_BUTTON, 50 + 10, 80 + 10, 40, 15, 1, 5, 'S'},	// Sound
+	{GUI_CUSTOMTEXT, 0x01, GWF_BUTTON, 50 + 10 + 40 + 30, 80 + 10, 40, 15, 3, 7, 'A'},	// About
+	{GUI_CUSTOMTEXT, 0x01, GWF_BUTTON, 50 + 10 + 40 + 30 + 40 + 30, 80 + 10, 40, 15, 4, 18, 'M'},	// Misc
+	{0, 0, 0, 0, 0, 0, 0, 0, 0}
+#endif
 };
 
 const GuiWidget misc_dialog[] = {





More information about the Scummvm-git-logs mailing list