aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/charset-fontdata.cpp
diff options
context:
space:
mode:
authorMax Horn2010-11-01 21:37:47 +0000
committerMax Horn2010-11-01 21:37:47 +0000
commita7248a0601a5b8e34fa9cccc3543e93fa9ab6649 (patch)
treeb2e3e2b6e15de28bd203a7ab8e3024928ae592ce /engines/scumm/charset-fontdata.cpp
parentcba30ee716a3679d86656d6f1aade3e33d3130d7 (diff)
downloadscummvm-rg350-a7248a0601a5b8e34fa9cccc3543e93fa9ab6649.tar.gz
scummvm-rg350-a7248a0601a5b8e34fa9cccc3543e93fa9ab6649.tar.bz2
scummvm-rg350-a7248a0601a5b8e34fa9cccc3543e93fa9ab6649.zip
ENGINES: Replace many printfs by warning/debug/debugN
svn-id: r54031
Diffstat (limited to 'engines/scumm/charset-fontdata.cpp')
-rw-r--r--engines/scumm/charset-fontdata.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/scumm/charset-fontdata.cpp b/engines/scumm/charset-fontdata.cpp
index 904e40d9ea..378e8e9d8d 100644
--- a/engines/scumm/charset-fontdata.cpp
+++ b/engines/scumm/charset-fontdata.cpp
@@ -589,20 +589,20 @@ CharsetRendererV2::CharsetRendererV2(ScummEngine *vm, Common::Language language)
b = data[offset+3];
len = data[offset+4];
while (len--) {
- printf("0x%02x, ", b);
+ debugN("0x%02x, ", b);
count++;
if (count % 8 == 0)
- printf("\n");
+ debugN("\n");
}
offset += 6;
} else {
- printf("0x%02x, ", data[offset]);
+ debugN("0x%02x, ", data[offset]);
count++;
if (count % 8 == 0)
- printf("\n");
+ debugN("\n");
}
}
- printf("\n");
+ debugN("\n");
_vm->_system->quit();
#endif
}