SCI: fixing saved game compatibility

svn-id: r46827
This commit is contained in:
Martin Kiewitz 2010-01-01 14:22:07 +00:00
parent 5b9409859b
commit 385c462352
2 changed files with 7 additions and 6 deletions

View File

@ -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;

View File

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