diff options
author | Willem Jan Palenstijn | 2017-12-08 12:33:54 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2017-12-08 11:41:32 +0000 |
commit | c5f67ac471cb72e4ccf587f0d7473de735110246 (patch) | |
tree | 680fcd06b0bd9f1bbf1b5b0e4b1a63b2f50d6820 | |
parent | c6c39d557850157d94e8e42d3f79391640264689 (diff) | |
download | scummvm-rg350-c5f67ac471cb72e4ccf587f0d7473de735110246.tar.gz scummvm-rg350-c5f67ac471cb72e4ccf587f0d7473de735110246.tar.bz2 scummvm-rg350-c5f67ac471cb72e4ccf587f0d7473de735110246.zip |
WAGE: Improve error message
-rw-r--r-- | engines/wage/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wage/script.cpp b/engines/wage/script.cpp index 7a8ba14ad4..558f493847 100644 --- a/engines/wage/script.cpp +++ b/engines/wage/script.cpp @@ -90,7 +90,7 @@ Common::String Script::Operand::toString() const { case CLICK_INPUT: return Wage::toString(_value.inputClick); default: - error("Unhandled operand type: _type"); + error("Unhandled operand type: %d", (int)_type); } } |