[Scummvm-cvs-logs] CVS: scummvm/common gameDetector.h,1.36,1.36.2.1

Max Horn fingolfin at users.sourceforge.net
Mon May 26 05:47:07 CEST 2003


Update of /cvsroot/scummvm/scummvm/common
In directory sc8-pr-cvs1:/tmp/cvs-serv2320

Modified Files:
      Tag: branch-0-4-0
	gameDetector.h 
Log Message:
GID's were exceeding the byte range (sync with trunk)

Index: gameDetector.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/gameDetector.h,v
retrieving revision 1.36
retrieving revision 1.36.2.1
diff -u -d -r1.36 -r1.36.2.1
--- gameDetector.h	6 Apr 2003 19:41:34 -0000	1.36
+++ gameDetector.h	26 May 2003 12:46:45 -0000	1.36.2.1
@@ -57,11 +57,11 @@
 
 	// Simon the Sorcerer
 	GID_SIMON_FIRST,
-	GID_SIMON_LAST = GID_SIMON_FIRST + 99,
+	GID_SIMON_LAST = GID_SIMON_FIRST + 49,
 
 	// Beneath a Steel Sky
 	GID_SKY_FIRST,
-	GID_SKY_LAST = GID_SKY_FIRST + 99
+	GID_SKY_LAST = GID_SKY_FIRST + 49
 };
 
 // TODO: the GameFeatures really should be moved to scumm/scumm.h, too





More information about the Scummvm-git-logs mailing list