aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/script.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wage/script.cpp')
-rw-r--r--engines/wage/script.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/engines/wage/script.cpp b/engines/wage/script.cpp
index 3be3d599a0..8b842f847a 100644
--- a/engines/wage/script.cpp
+++ b/engines/wage/script.cpp
@@ -389,14 +389,12 @@ Script::Operand *Script::readStringOperand() {
_data->seek(-1, SEEK_CUR);
if (allDigits && sb->size() > 0) {
- debug(0, "Read number %s", sb->c_str());
int r = atol(sb->c_str());
delete sb;
return new Operand(r, NUMBER);
} else {
// TODO: This string could be a room name or something like that.
- debug(0, "Read string %s", sb->c_str());
return new Operand(sb, STRING);
}
}