diff options
author | Max Horn | 2010-11-02 09:50:29 +0000 |
---|---|---|
committer | Max Horn | 2010-11-02 09:50:29 +0000 |
commit | 8047f79a46058ca1c520632469aa6422e81cf904 (patch) | |
tree | 200e587498aec069b0a19f29658a846904e20c15 | |
parent | 7cf7b198add96e33438128e1d55114fea813821c (diff) | |
download | scummvm-rg350-8047f79a46058ca1c520632469aa6422e81cf904.tar.gz scummvm-rg350-8047f79a46058ca1c520632469aa6422e81cf904.tar.bz2 scummvm-rg350-8047f79a46058ca1c520632469aa6422e81cf904.zip |
M4: Convert last few printfs to debug
svn-id: r54039
-rw-r--r-- | engines/m4/converse.cpp | 6 |
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; } } |