[Scummvm-cvs-logs] CVS: scummvm/scumm scumm.cpp,1.197,1.198

Jonathan Gray khalek at users.sourceforge.net
Tue Sep 14 01:53:01 CEST 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9537

Modified Files:
	scumm.cpp 
Log Message:
_numActors should be 30 not 29 for HE 72 titles, makes HE 72 version of puttzoo work

Index: scumm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scumm.cpp,v
retrieving revision 1.197
retrieving revision 1.198
diff -u -d -r1.197 -r1.198
--- scumm.cpp	14 Sep 2004 06:21:11 -0000	1.197
+++ scumm.cpp	14 Sep 2004 08:52:12 -0000	1.198
@@ -1147,14 +1147,12 @@
 
 	if (_version == 8)
 		_numActors = 80;
-	else if ((_version == 7) || (_gameId == GID_SAMNMAX))
+	else if ((_version == 7) || (_heversion == 72) || (_gameId == GID_SAMNMAX))
 		_numActors = 30;
 	else if (_gameId == GID_MANIAC)
 		_numActors = 25;
 	else if (_heversion >= 80)
 		_numActors = 62;
-	else if (_heversion == 72)
-		_numActors = 29;
 	else 
 		_numActors = 13;
 





More information about the Scummvm-git-logs mailing list