aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.h
diff options
context:
space:
mode:
authorMax Horn2008-02-01 23:32:20 +0000
committerMax Horn2008-02-01 23:32:20 +0000
commit511019bd83c55d47fdc0e3c94220d3a68e851779 (patch)
treea76f425905c0b53b0ad5ed1888696f8ff7a02e31 /engines/scumm/scumm.h
parent0ae9fe74674c4487bb74c2582fe03e74cc7da720 (diff)
downloadscummvm-rg350-511019bd83c55d47fdc0e3c94220d3a68e851779.tar.gz
scummvm-rg350-511019bd83c55d47fdc0e3c94220d3a68e851779.tar.bz2
scummvm-rg350-511019bd83c55d47fdc0e3c94220d3a68e851779.zip
Change InSaveFile -> SeekableReadStream where possible
svn-id: r30722
Diffstat (limited to 'engines/scumm/scumm.h')
-rw-r--r--engines/scumm/scumm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/scumm/scumm.h b/engines/scumm/scumm.h
index 41f7784d36..f636fee825 100644
--- a/engines/scumm/scumm.h
+++ b/engines/scumm/scumm.h
@@ -45,7 +45,7 @@ namespace GUI {
}
using GUI::Dialog;
namespace Common {
- class InSaveFile;
+ class SeekableReadStream;
class OutSaveFile;
}
@@ -635,8 +635,8 @@ public:
bool loadInfosFromSlot(int slot, InfoStuff *stuff);
protected:
- Graphics::Surface *loadThumbnail(Common::InSaveFile *file);
- bool loadInfos(Common::InSaveFile *file, InfoStuff *stuff);
+ Graphics::Surface *loadThumbnail(Common::SeekableReadStream *file);
+ bool loadInfos(Common::SeekableReadStream *file, InfoStuff *stuff);
void saveThumbnail(Common::OutSaveFile *file);
void saveInfos(Common::OutSaveFile* file);