aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/script.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wage/script.h')
-rw-r--r--engines/wage/script.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wage/script.h b/engines/wage/script.h
index 143a93dc4d..39fbbc52d0 100644
--- a/engines/wage/script.h
+++ b/engines/wage/script.h
@@ -61,7 +61,7 @@ private:
WageEngine *_engine;
World *_world;
int _loopCount;
- String *_inputText;
+ Common::String *_inputText;
Designed *_inputClick;
bool _handled;
@@ -73,7 +73,7 @@ private:
Designed *designed;
Scene *scene;
int16 number;
- String *string;
+ Common::String *string;
Designed *inputClick;
} _value;
OperandType _type;
@@ -99,7 +99,7 @@ private:
_type = type;
}
- Operand(String *value, OperandType type) {
+ Operand(Common::String *value, OperandType type) {
_value.string = value;
_type = type;
}
@@ -149,7 +149,7 @@ private:
public:
void print();
void printLine(int offset);
- bool execute(World *world, int loopCount, String *inputText, Designed *inputClick, WageEngine *engine);
+ bool execute(World *world, int loopCount, Common::String *inputText, Designed *inputClick, WageEngine *engine);
private:
Operand *readOperand();