diff options
Diffstat (limited to 'engines/scumm/charset-fontdata.cpp')
-rw-r--r-- | engines/scumm/charset-fontdata.cpp | 10 |
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 } |