diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | scumm/saveload.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -27,7 +27,7 @@ For a more comprehensive changelog for the latest experimental CVS code, see: volume using hotkeys. - Added support for NES version of Maniac Mansion - Added thumbnail support for savegames. - - Broke compatibility with HE savegame (HE v71 and upwards only) + - Broke compatibility with HE savegame (HE v70 and upwards only) Sword2: - Made the resource manager expire resources more intelligently. diff --git a/scumm/saveload.cpp b/scumm/saveload.cpp index af9cfaf26c..17bea59e37 100644 --- a/scumm/saveload.cpp +++ b/scumm/saveload.cpp @@ -122,7 +122,7 @@ bool ScummEngine::loadState(int slot, bool compat) { } // We (deliberately) broke HE savegame compatibility at some point. - if (hdr.ver < VER(50) && _heversion >= 71) { + if (hdr.ver < VER(50) && _heversion >= 70) { warning("Unsupported version of '%s'", filename); delete in; return false; |