aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2010-07-18 12:26:22 +0000
committerWillem Jan Palenstijn2010-07-18 12:26:22 +0000
commitf36eb7e2edf5ec6140c1fce136c1804cdf81e787 (patch)
tree451e9c3eee35941c93f6485e0d1af3a126738483 /engines/sci/engine
parent98f0b06fe3afcdff66646cf0f3bee5dd9c0b801e (diff)
downloadscummvm-rg350-f36eb7e2edf5ec6140c1fce136c1804cdf81e787.tar.gz
scummvm-rg350-f36eb7e2edf5ec6140c1fce136c1804cdf81e787.tar.bz2
scummvm-rg350-f36eb7e2edf5ec6140c1fce136c1804cdf81e787.zip
SCI: Fix warning
svn-id: r50988
Diffstat (limited to 'engines/sci/engine')
-rw-r--r--engines/sci/engine/kparse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kparse.cpp b/engines/sci/engine/kparse.cpp
index 80a1c10e59..4287e7c96b 100644
--- a/engines/sci/engine/kparse.cpp
+++ b/engines/sci/engine/kparse.cpp
@@ -106,7 +106,7 @@ reg_t kParse(EngineState *s, int argc, reg_t *argv) {
s->r_acc = make_reg(0, 1);
#ifdef DEBUG_PARSER
- debugC(2, kDebugLevelParser, "Parsed to the following blocks:", 0);
+ debugC(2, kDebugLevelParser, "Parsed to the following blocks:");
for (ResultWordList::const_iterator i = words.begin(); i != words.end(); ++i)
debugC(2, kDebugLevelParser, " Type[%04x] Group[%04x]", i->_class, i->_group);