diff options
-rw-r--r-- | scumm/scumm.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index 0b7437ec97..0c126ef36a 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -1052,8 +1052,10 @@ void ScummEngine::mainInit() { if (_version == 8) _numActors = 80; - else if ((_version == 7) || (_heversion == 72) || (_gameId == GID_SAMNMAX)) + else if ((_version == 7) || (_heversion == 72)) _numActors = 30; + else if (_gameId == GID_SAMNMAX) + _numActors = 20; else if (_gameId == GID_MANIAC) _numActors = 25; else if (_heversion >= 80) |