diff options
Diffstat (limited to 'engines/fullpipe/objects.h')
-rw-r--r-- | engines/fullpipe/objects.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/fullpipe/objects.h b/engines/fullpipe/objects.h index 12ad6105d3..a8cd846631 100644 --- a/engines/fullpipe/objects.h +++ b/engines/fullpipe/objects.h @@ -33,7 +33,7 @@ class SceneTagList; class GameProject : public CObject { public: int _field_4; - char *_headerFilename; + Common::String _headerFilename; SceneTagList *_sceneTagList; int _field_10; @@ -80,7 +80,7 @@ class GameVar : public CObject { GameVar *_parentVarObj; GameVar *_subVars; GameVar *_field_14; - char *_varName; + Common::String _varName; VarValue _value; int _varType; @@ -90,10 +90,10 @@ class GameVar : public CObject { virtual bool load(MfcArchive &file); virtual void save(MfcArchive &file); - GameVar *getSubVarByName(const char *name); - bool setSubVarAsInt(const char *name, int value); - int getSubVarAsInt(const char *name); - GameVar *addSubVarAsInt(const char *name, int value); + GameVar *getSubVarByName(Common::String name); + bool setSubVarAsInt(Common::String name, int value); + int getSubVarAsInt(Common::String name); + GameVar *addSubVarAsInt(Common::String name, int value); bool addSubVar(GameVar *subvar); int getSubVarsCount(); GameVar *getSubVarByIndex(int idx); |