diff options
-rw-r--r-- | engines/wage/script.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wage/script.h b/engines/wage/script.h index a91598094c..325733add7 100644 --- a/engines/wage/script.h +++ b/engines/wage/script.h @@ -104,7 +104,7 @@ private: Operand(Common::String *value, OperandType type) { _value.string = value; - assert(type == STRING); + assert(type == STRING || type == TEXT_INPUT); _type = type; } |