aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray2004-09-14 08:52:12 +0000
committerJonathan Gray2004-09-14 08:52:12 +0000
commit488430a06ec8868fe82bd5f759da12b02c6db40f (patch)
treefdfc1cd48e0605f8008c34755dc23cd6f7fac50e
parentf605130496fe220c3a453040e4aaffb951d3b3bd (diff)
downloadscummvm-rg350-488430a06ec8868fe82bd5f759da12b02c6db40f.tar.gz
scummvm-rg350-488430a06ec8868fe82bd5f759da12b02c6db40f.tar.bz2
scummvm-rg350-488430a06ec8868fe82bd5f759da12b02c6db40f.zip
_numActors should be 30 not 29 for HE 72 titles, makes HE 72 version of puttzoo work
svn-id: r15111
-rw-r--r--scumm/scumm.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 782b21a0c0..e3ec63feb8 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -1147,14 +1147,12 @@ void ScummEngine::launch() {
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;