aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Hoops2010-07-28 16:00:13 +0000
committerMatthew Hoops2010-07-28 16:00:13 +0000
commit3f5958af78797e1b99ebefafbce38fecfbb27d39 (patch)
treef9acf3bb98b790805d43a6697424b09d8a65bccf
parente85cf6bfbb01f2691dd7215d765a1f8db81e3159 (diff)
downloadscummvm-rg350-3f5958af78797e1b99ebefafbce38fecfbb27d39.tar.gz
scummvm-rg350-3f5958af78797e1b99ebefafbce38fecfbb27d39.tar.bz2
scummvm-rg350-3f5958af78797e1b99ebefafbce38fecfbb27d39.zip
SCI: Fix compilation when DEBUG_PARSER is defined
svn-id: r51425
-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 799cbf63b6..552e425906 100644
--- a/engines/sci/engine/kparse.cpp
+++ b/engines/sci/engine/kparse.cpp
@@ -63,7 +63,7 @@ reg_t kSaid(EngineState *s, int argc, reg_t *argv) {
#ifdef DEBUG_PARSER
printf("Said block: ");
- g_sci->getVocabulary()->decipherSaidBlock(said_block);
+ g_sci->getVocabulary()->debugDecipherSaidBlock(said_block);
#endif
if (voc->parser_event.isNull() || (readSelectorValue(s->_segMan, voc->parser_event, SELECTOR(claimed)))) {