diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scummvm.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 5f48cf3cd0..99158481d6 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -1232,7 +1232,7 @@ load_game: if (oldEgo != VAR(VAR_EGO)) { // FIXME/TODO: Reset and redraw the sentence line oldEgo = VAR(VAR_EGO); - _inventoryOffset = 0; // TODO: Record the _inventoryOffset for each ego actor? + _inventoryOffset = 0; redrawV2Inventory(); } checkV2MouseOver(_mouse); @@ -2529,8 +2529,6 @@ void Scumm::launch() { _numActors = 30; else if (_gameId == GID_MANIAC) _numActors = 25; - else if ((_gameId == GID_ZAK) && (_version == 1)) - _numActors = 14; // FIXME: Nasty Wrong Hack(tm) else _numActors = 13; |