aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/utils.h
diff options
context:
space:
mode:
authorEugene Sandulenko2016-09-19 18:58:39 +0200
committerEugene Sandulenko2016-09-19 18:58:39 +0200
commit783d968e20fb7a29d5c19ba6671d6c9ba363ec41 (patch)
treef923b8e1767e1e94f5a2712309d1e0d6534df516 /engines/fullpipe/utils.h
parent1e9351efaf5c7c99c23f6155b4f9ac591f8c42d4 (diff)
downloadscummvm-rg350-783d968e20fb7a29d5c19ba6671d6c9ba363ec41.tar.gz
scummvm-rg350-783d968e20fb7a29d5c19ba6671d6c9ba363ec41.tar.bz2
scummvm-rg350-783d968e20fb7a29d5c19ba6671d6c9ba363ec41.zip
FULLPIPE: Fix saving object to savegames
Diffstat (limited to 'engines/fullpipe/utils.h')
-rw-r--r--engines/fullpipe/utils.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/fullpipe/utils.h b/engines/fullpipe/utils.h
index 44bda68cac..41a54f4ce7 100644
--- a/engines/fullpipe/utils.h
+++ b/engines/fullpipe/utils.h
@@ -68,7 +68,7 @@ public:
MfcArchive(Common::WriteStream *file);
char *readPascalString(bool twoByte = false);
- void writePascalString(char *str, bool twoByte = false);
+ void writePascalString(const char *str, bool twoByte = false);
int readCount();
double readDouble();
CObject *parseClass(bool *isCopyReturned);
@@ -103,7 +103,8 @@ enum ObjType {
kObjTypeMctlCompound,
kObjTypeObjstateCommand,
kObjTypePictureObject,
- kObjTypeStaticANIObject
+ kObjTypeStaticANIObject,
+ kObjTypeGameVar
};
class CObject {