[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
- Previous message: [Scummvm-cvs-logs] CVS: scummvm actor.h,1.15,1.16 actor.cpp,1.104,1.105 script.cpp,1.67,1.68 scumm.h,1.194,1.195 script_v1.cpp,1.132,1.133 script_v2.cpp,1.79,1.80
- Next message: [Scummvm-cvs-logs] CVS: scummvm script_v2.cpp,1.80,1.81
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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[] = {
- Previous message: [Scummvm-cvs-logs] CVS: scummvm actor.h,1.15,1.16 actor.cpp,1.104,1.105 script.cpp,1.67,1.68 scumm.h,1.194,1.195 script_v1.cpp,1.132,1.133 script_v2.cpp,1.79,1.80
- Next message: [Scummvm-cvs-logs] CVS: scummvm script_v2.cpp,1.80,1.81
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list