[Scummvm-cvs-logs] CVS: scummvm/simon simon.cpp,1.309,1.310

Max Horn fingolfin at users.sourceforge.net
Sun Oct 12 11:41:07 CEST 2003


Update of /cvsroot/scummvm/scummvm/simon
In directory sc8-pr-cvs1:/tmp/cvs-serv28202/simon

Modified Files:
	simon.cpp 
Log Message:
some renaming for more consistent terminology (although we might want to reevaluate this): 'target' is what is in your config file; 'game' is what a frontend provide. E.g. the scumm frontend provides the game 'monkeyvga', and my config file has target 'monkeyvga-ger' configured to use that game

Index: simon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.cpp,v
retrieving revision 1.309
retrieving revision 1.310
diff -u -d -r1.309 -r1.310
--- simon.cpp	8 Oct 2003 21:59:23 -0000	1.309
+++ simon.cpp	12 Oct 2003 18:40:11 -0000	1.310
@@ -45,7 +45,7 @@
 
 #endif
 
-static const TargetSettings simon_settings[] = {
+static const GameSettings simon_settings[] = {
 	// Simon the Sorcerer 1 & 2 (not SCUMM games)
 	{"simon1acorn", "Simon the Sorcerer 1 (Acorn)", GID_SIMON_FIRST, 99, MDT_ADLIB | MDT_NATIVE, GAME_SIMON1ACORN, "DATA"},
 	{"simon1dos", "Simon the Sorcerer 1 (DOS)", GID_SIMON_FIRST, 99, MDT_ADLIB | MDT_NATIVE, GAME_SIMON1DOS, "GAMEPC"},
@@ -62,7 +62,7 @@
 	{NULL, NULL, 0, 0, MDT_NONE, 0, NULL}
 };
 
-const TargetSettings *Engine_SIMON_targetList() {
+const GameSettings *Engine_SIMON_targetList() {
 	return simon_settings;
 }
 





More information about the Scummvm-git-logs mailing list