From a2fb53790b85050e2bac1af5e7a3ab626a6dc3db Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Sat, 4 Feb 2017 19:33:31 -0600 Subject: SCI32: Make version 41 the first supported save game version Save games created by earlier versions of ScummVM are prone to having subtle graphics problems or other corruption caused by incomplete save/load code. --- engines/sci/engine/savegame.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'engines/sci/engine/savegame.h') diff --git a/engines/sci/engine/savegame.h b/engines/sci/engine/savegame.h index 72982469e0..b6a673b1c0 100644 --- a/engines/sci/engine/savegame.h +++ b/engines/sci/engine/savegame.h @@ -37,7 +37,7 @@ struct EngineState; * * Version - new/changed feature * ============================= - * 41 - palette support for newer SCI2.1 games + * 41 - palette support for newer SCI2.1 games; stable SCI2/2.1 save games * 40 - always store palvary variables * 39 - Accurate SCI32 arrays/strings, score metadata, avatar metadata * 38 - SCI32 cursor @@ -68,6 +68,10 @@ struct EngineState; enum { CURRENT_SAVEGAME_VERSION = 41, MINIMUM_SAVEGAME_VERSION = 14 +#ifdef ENABLE_SCI32 + , + MINIMUM_SCI32_SAVEGAME_VERSION = 41 +#endif }; // Savegame metadata -- cgit v1.2.3