[Scummvm-cvs-logs] CVS: scummvm/simon simon.cpp,1.67,1.68

Max Horn fingolfin at users.sourceforge.net
Sun Nov 10 09:20:02 CET 2002


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

Modified Files:
	simon.cpp 
Log Message:
completly decoupled engine.h/.cpp from simon.h and scumm.h; removed some static variables from drawFlashlight() and made them members of class Scumm instead

Index: simon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.cpp,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -d -r1.67 -r1.68
--- simon.cpp	10 Nov 2002 16:25:02 -0000	1.67
+++ simon.cpp	10 Nov 2002 17:19:43 -0000	1.68
@@ -121,6 +121,11 @@
 };
 
 
+Engine *Engine_SIMON_create(GameDetector *detector, OSystem *syst)
+{
+	return new SimonState(detector, syst);
+}
+
 SimonState::SimonState(GameDetector *detector, OSystem *syst)
 	: Engine(detector, syst)
 {





More information about the Scummvm-git-logs mailing list