aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sci/console.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index c2ea377f9b..f5a1880bf5 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -1911,9 +1911,11 @@ bool Console::cmdValueType(int argc, const char **argv) {
break;
case KSIG_ARITHMETIC:
DebugPrintf("Arithmetic");
+ case KSIG_ARITHMETIC | KSIG_NULL:
+ DebugPrintf("Null");
break;
default:
- DebugPrintf("Erroneous unknown type %02x(%d decimal)\n", t, t);
+ DebugPrintf("Erroneous unknown type 0x%02x (%d decimal)\n", t, t);
}
return true;