aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.h
diff options
context:
space:
mode:
authorJohannes Schickel2008-08-20 14:24:16 +0000
committerJohannes Schickel2008-08-20 14:24:16 +0000
commit9138128f5cee660184ce57b645644d341241918a (patch)
tree227f5b9fc2bab3ac30d85d545b615efbf0f9137e /engines/scumm/scumm.h
parentf4fc8c3e4c1621e8c40392881a6c647f9915fa38 (diff)
downloadscummvm-rg350-9138128f5cee660184ce57b645644d341241918a.tar.gz
scummvm-rg350-9138128f5cee660184ce57b645644d341241918a.tar.bz2
scummvm-rg350-9138128f5cee660184ce57b645644d341241918a.zip
- Committed Max' compressed save backseeking support from patch #2050337 "KYRA/SCUMM: Thumbnail support/improvement"
- Extended SCUMM engine to support savegames without thumbnail header. (Increased savegame version to prevent saves to be loaded from older ScummVM versions) - Fixed KYRA to properly support savegames without thumbnail header. svn-id: r34054
Diffstat (limited to 'engines/scumm/scumm.h')
-rw-r--r--engines/scumm/scumm.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/scumm/scumm.h b/engines/scumm/scumm.h
index 2763331420..9ac78e3b93 100644
--- a/engines/scumm/scumm.h
+++ b/engines/scumm/scumm.h
@@ -636,9 +636,11 @@ public:
protected:
Graphics::Surface *loadThumbnail(Common::SeekableReadStream *file);
- bool loadInfos(Common::SeekableReadStream *file, InfoStuff *stuff);
void saveThumbnail(Common::WriteStream *file);
+ void skipThumbnailHeader(Common::SeekableReadStream *file);
+
void saveInfos(Common::WriteStream* file);
+ bool loadInfos(Common::SeekableReadStream *file, InfoStuff *stuff);
int32 _engineStartTime;
int32 _pauseStartTime;