diff options
-rw-r--r-- | engines/sci/engine/savegame.cpp | 11 | ||||
-rw-r--r-- | engines/sci/engine/savegame.h | 2 |
2 files changed, 7 insertions, 6 deletions
diff --git a/engines/sci/engine/savegame.cpp b/engines/sci/engine/savegame.cpp index 75f191256f..efdaa13490 100644 --- a/engines/sci/engine/savegame.cpp +++ b/engines/sci/engine/savegame.cpp @@ -133,11 +133,11 @@ void MusicEntry::saveLoadWithSerializer(Common::Serializer &s) { s.syncAsSint16LE(resnum); s.syncAsSint16LE(dataInc); s.syncAsSint16LE(ticker); - s.syncAsSint16LE(signal); + s.syncAsSint16LE(signal, VER(17)); s.syncAsByte(prio); - s.syncAsSint16LE(loop); + s.syncAsSint16LE(loop, VER(17)); s.syncAsByte(volume); - s.syncAsByte(hold); + s.syncAsByte(hold, VER(17)); s.syncAsByte(fadeTo); s.syncAsSint16LE(fadeStep); s.syncAsSint32LE(fadeTicker); @@ -630,10 +630,11 @@ void SciMusic::saveLoadWithSerializer(Common::Serializer &s) { s.syncAsByte(_soundOn); s.syncAsByte(masterVolume); } else if (s.isLoading()) { - if (s.getVersion() >= 14) { + if (s.getVersion() >= 15) { s.syncAsByte(_soundOn); s.syncAsByte(masterVolume); - s.syncAsByte(_reverb); + _reverb = 0; + s.syncAsByte(_reverb, VER(17)); } else { _soundOn = true; masterVolume = 15; diff --git a/engines/sci/engine/savegame.h b/engines/sci/engine/savegame.h index 8a4d8e7d3b..38dcd04619 100644 --- a/engines/sci/engine/savegame.h +++ b/engines/sci/engine/savegame.h @@ -36,7 +36,7 @@ namespace Sci { struct EngineState; enum { - CURRENT_SAVEGAME_VERSION = 14, + CURRENT_SAVEGAME_VERSION = 17, MINIMUM_SAVEGAME_VERSION = 9 }; |