diff options
-rw-r--r-- | engines/sci/engine/savegame.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/savegame.cpp b/engines/sci/engine/savegame.cpp index 4cd0f054d4..9d663fc1cf 100644 --- a/engines/sci/engine/savegame.cpp +++ b/engines/sci/engine/savegame.cpp @@ -221,8 +221,8 @@ void SegManager::saveLoadWithSerializer(Common::Serializer &s) { s.skip(4, VER(9), VER(9)); // OBSOLETE: Used to be _segManagerId - // Don't load HunkTable segments - if (s.isLoading() && type == SEG_TYPE_HUNK) { + // Don't save or load HunkTable segments + if (type == SEG_TYPE_HUNK) { continue; } |