aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/utils.h
diff options
context:
space:
mode:
authorFilippos Karapetis2017-03-22 04:11:49 +0200
committerFilippos Karapetis2017-03-22 04:11:49 +0200
commitf3e81b5f17872186f7c67a551876dd78f268865c (patch)
tree3465c6ec7a4664cee4b7e893e8e0e0d3c5845603 /engines/fullpipe/utils.h
parent728b23af2ad939e3da920a41b85730689a1aa71f (diff)
downloadscummvm-rg350-f3e81b5f17872186f7c67a551876dd78f268865c.tar.gz
scummvm-rg350-f3e81b5f17872186f7c67a551876dd78f268865c.tar.bz2
scummvm-rg350-f3e81b5f17872186f7c67a551876dd78f268865c.zip
FULLPIPE: Use Common::String in all scene object names
Diffstat (limited to 'engines/fullpipe/utils.h')
-rw-r--r--engines/fullpipe/utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/utils.h b/engines/fullpipe/utils.h
index 9630df6153..101fe20e1b 100644
--- a/engines/fullpipe/utils.h
+++ b/engines/fullpipe/utils.h
@@ -67,8 +67,8 @@ public:
MfcArchive(Common::SeekableReadStream *file);
MfcArchive(Common::WriteStream *file);
- char *readPascalString(bool twoByte = false);
- void writePascalString(const char *str, bool twoByte = false);
+ Common::String readPascalString(bool twoByte = false);
+ void writePascalString(Common::String str, bool twoByte = false);
int readCount();
double readDouble();
CObject *parseClass(bool *isCopyReturned);