aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.h
diff options
context:
space:
mode:
authorMax Horn2011-04-05 11:39:07 +0200
committerMax Horn2011-04-05 15:18:08 +0200
commitfb5330384708a345d0c3728691d3ea36295b29d0 (patch)
tree78bfea78dbe920abd18e433fd0c624d8f7eaa134 /engines/scumm/scumm.h
parentd7a6bf58461ca4d780d354403fc40c9c91f66988 (diff)
downloadscummvm-rg350-fb5330384708a345d0c3728691d3ea36295b29d0.tar.gz
scummvm-rg350-fb5330384708a345d0c3728691d3ea36295b29d0.tar.bz2
scummvm-rg350-fb5330384708a345d0c3728691d3ea36295b29d0.zip
SCUMM: Rename InfoStuff to SaveStateMetaInfos
Diffstat (limited to 'engines/scumm/scumm.h')
-rw-r--r--engines/scumm/scumm.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/engines/scumm/scumm.h b/engines/scumm/scumm.h
index 86b8276fd0..23e6b7b256 100644
--- a/engines/scumm/scumm.h
+++ b/engines/scumm/scumm.h
@@ -308,8 +308,7 @@ enum WhereIsObject {
WIO_FLOBJECT = 4
};
-// TODO: Rename InfoStuff to something more descriptive
-struct InfoStuff {
+struct SaveStateMetaInfos {
uint32 date;
uint16 time;
uint32 playtime;
@@ -678,11 +677,11 @@ public:
}
static Graphics::Surface *loadThumbnailFromSlot(const char *target, int slot);
- static bool loadInfosFromSlot(const char *target, int slot, InfoStuff *stuff);
+ static bool loadInfosFromSlot(const char *target, int slot, SaveStateMetaInfos *stuff);
protected:
void saveInfos(Common::WriteStream* file);
- static bool loadInfos(Common::SeekableReadStream *file, InfoStuff *stuff);
+ static bool loadInfos(Common::SeekableReadStream *file, SaveStateMetaInfos *stuff);
protected:
/* Script VM - should be in Script class */