aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-05-11 14:39:04 +0000
committerTravis Howell2005-05-11 14:39:04 +0000
commit2921938301638497c88fcdd437bd6b08528e00d0 (patch)
treedc97759ad05d38a4abf0bca1a3a772ad65e1e3f3 /scumm/scumm.cpp
parenta6b445b531caa236c075c9b448325ae219200ae1 (diff)
downloadscummvm-rg350-2921938301638497c88fcdd437bd6b08528e00d0.tar.gz
scummvm-rg350-2921938301638497c88fcdd437bd6b08528e00d0.tar.bz2
scummvm-rg350-2921938301638497c88fcdd437bd6b08528e00d0.zip
Corect _numActors in HE games.
svn-id: r18053
Diffstat (limited to 'scumm/scumm.cpp')
-rw-r--r--scumm/scumm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index b7131f86f8..4c73057f99 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -1478,7 +1478,7 @@ int ScummEngine::init(GameDetector &detector) {
else if (_gameId == GID_MANIAC)
_numActors = 25;
else if (_heversion >= 80)
- _numActors = 63;
+ _numActors = 62;
else if (_heversion >= 70)
_numActors = 30;
else