aboutsummaryrefslogtreecommitdiff
path: root/engines/m4
diff options
context:
space:
mode:
authorMax Horn2010-11-02 09:50:29 +0000
committerMax Horn2010-11-02 09:50:29 +0000
commit8047f79a46058ca1c520632469aa6422e81cf904 (patch)
tree200e587498aec069b0a19f29658a846904e20c15 /engines/m4
parent7cf7b198add96e33438128e1d55114fea813821c (diff)
downloadscummvm-rg350-8047f79a46058ca1c520632469aa6422e81cf904.tar.gz
scummvm-rg350-8047f79a46058ca1c520632469aa6422e81cf904.tar.bz2
scummvm-rg350-8047f79a46058ca1c520632469aa6422e81cf904.zip
M4: Convert last few printfs to debug
svn-id: r54039
Diffstat (limited to 'engines/m4')
-rw-r--r--engines/m4/converse.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/m4/converse.cpp b/engines/m4/converse.cpp
index e53b3cd603..3baa6d5eb3 100644
--- a/engines/m4/converse.cpp
+++ b/engines/m4/converse.cpp
@@ -470,8 +470,8 @@ void Converse::loadConversation(const char *convName) {
if (debugFlag) debug(kDebugConversations, "Unknown (attributes perhaps?): %i\n", data);
data = convS->readUint32LE();
if (debugFlag) debug(kDebugConversations, "Entry flags: ");
- if (debugFlag) if (data & kEntryInitial) printf ("Initial ");
- if (debugFlag) if (data & kEntryPersists) printf ("Persists ");
+ if (debugFlag) if (data & kEntryInitial) debug(kDebugConversations, "Initial ");
+ if (debugFlag) if (data & kEntryPersists) debug(kDebugConversations, "Persists ");
if (debugFlag) debug(kDebugConversations, "\n");
curEntry->flags = data;
curEntry->visible = (curEntry->flags & kEntryInitial) ? true : false;
@@ -1094,7 +1094,7 @@ void Converse::readConvEntryActions(Common::SubReadStream *convS, ConvEntry *cur
//debug(kDebugConversations, "Var %i = %i\n", var, val);
break;
default:
- printf ("Unknown chunk type! (%i)\n", chunk);
+ debug(kDebugConversations, "Unknown chunk type! (%i)\n", chunk);
break;
}
}