Updated the save game format for the changes in #49093

svn-id: r49094
This commit is contained in:
Filippos Karapetis 2010-05-19 09:39:11 +00:00
parent 174a043aa7
commit 209798474b
2 changed files with 2 additions and 2 deletions

View File

@ -222,7 +222,7 @@ void syncWithSerializer(Common::Serializer &s, reg_t &obj) {
void SegManager::saveLoadWithSerializer(Common::Serializer &s) {
s.skip(4, VER(9), VER(9)); // OBSOLETE: Used to be reserved_id
s.skip(4, VER(18), VER(18)); // OBSOLETE: Used to be _exportsAreWide
s.skip(4, VER(9), VER(18)); // OBSOLETE: Used to be _exportsAreWide
s.skip(4, VER(9), VER(9)); // OBSOLETE: Used to be gc_mark_bits
if (s.isLoading()) {

View File

@ -36,7 +36,7 @@ namespace Sci {
struct EngineState;
enum {
CURRENT_SAVEGAME_VERSION = 18,
CURRENT_SAVEGAME_VERSION = 19,
MINIMUM_SAVEGAME_VERSION = 9
};