[Scummvm-cvs-logs] CVS: scummvm/sky sky.cpp,1.124,1.125 sky.h,1.52,1.53

Max Horn fingolfin at users.sourceforge.net
Tue Oct 28 09:08:20 CET 2003


Update of /cvsroot/scummvm/scummvm/sky
In directory sc8-pr-cvs1:/tmp/cvs-serv20245/sky

Modified Files:
	sky.cpp sky.h 
Log Message:
cleanup: removed version/id from GameSettings

Index: sky.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/sky.cpp,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -d -r1.124 -r1.125
--- sky.cpp	18 Oct 2003 00:22:46 -0000	1.124
+++ sky.cpp	28 Oct 2003 17:07:24 -0000	1.125
@@ -80,8 +80,8 @@
 
 static const GameSettings sky_settings[] = {
 	/* Beneath a Steel Sky */
-	{"sky", "Beneath a Steel Sky", GID_SKY_FIRST, 99, MDT_ADLIB | MDT_NATIVE | MDT_PREFER_NATIVE, 0, "sky.dsk" },
-	{NULL, NULL, 0, 0, MDT_NONE, 0, NULL}
+	{"sky", "Beneath a Steel Sky", MDT_ADLIB | MDT_NATIVE | MDT_PREFER_NATIVE, 0, "sky.dsk" },
+	{NULL, NULL, MDT_NONE, 0, NULL}
 };
 
 GameList Engine_SKY_gameList() {
@@ -122,8 +122,6 @@
 SkyEngine::SkyEngine(GameDetector *detector, OSystem *syst)
 	: Engine(detector, syst) {
 	
-	_game = detector->_game.id;
-
 	if (!_mixer->bindToSystem(syst))
 		warning("Sound initialisation failed.");
 

Index: sky.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/sky/sky.h,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -d -r1.52 -r1.53
--- sky.h	17 Oct 2003 15:35:46 -0000	1.52
+++ sky.h	28 Oct 2003 17:07:25 -0000	1.53
@@ -51,7 +51,6 @@
 class SkyEngine : public Engine {
 	void errorString(const char *buf_input, char *buf_output);
 protected:
-	byte _game;
 	byte _key_pressed;
 	bool _quickLaunch; // set when starting with -x
 	bool _floppyIntro;





More information about the Scummvm-git-logs mailing list