diff options
author | Max Horn | 2010-11-01 21:37:47 +0000 |
---|---|---|
committer | Max Horn | 2010-11-01 21:37:47 +0000 |
commit | a7248a0601a5b8e34fa9cccc3543e93fa9ab6649 (patch) | |
tree | b2e3e2b6e15de28bd203a7ab8e3024928ae592ce /engines/parallaction | |
parent | cba30ee716a3679d86656d6f1aade3e33d3130d7 (diff) | |
download | scummvm-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/parallaction')
-rw-r--r-- | engines/parallaction/font.cpp | 4 | ||||
-rw-r--r-- | engines/parallaction/parser_ns.cpp | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/engines/parallaction/font.cpp b/engines/parallaction/font.cpp index d1c67f1338..bf2bf6d419 100644 --- a/engines/parallaction/font.cpp +++ b/engines/parallaction/font.cpp @@ -574,7 +574,7 @@ void AmigaFont::blitData(byte c) { } uint16 AmigaFont::width(byte c) { -// printf("kern(%i) = %i, space(%i) = %i\t", c, getKerning(c), c, getSpacing(c)); +// debug("kern(%i) = %i, space(%i) = %i\t", c, getKerning(c), c, getSpacing(c)); return getKerning(c) + getSpacing(c); } @@ -642,7 +642,7 @@ Font *AmigaDisk_ns::createFont(const char *name, Common::SeekableReadStream &str } Font *DosDisk_br::createFont(const char *name, Common::ReadStream &stream) { -// printf("DosDisk_br::createFont(%s)\n", name); +// debug("DosDisk_br::createFont(%s)", name); Font *font; if (_vm->getFeatures() & GF_DEMO) { diff --git a/engines/parallaction/parser_ns.cpp b/engines/parallaction/parser_ns.cpp index ff24a06ceb..994cfa46fb 100644 --- a/engines/parallaction/parser_ns.cpp +++ b/engines/parallaction/parser_ns.cpp @@ -23,7 +23,6 @@ * */ - #include "parallaction/parallaction.h" #include "parallaction/parser.h" #include "parallaction/sound.h" @@ -1284,7 +1283,7 @@ DECLARE_ZONE_PARSER(commands) { DECLARE_ZONE_PARSER(label) { debugC(7, kDebugParser, "ZONE_PARSER(label) "); -// printf("label: %s", _tokens[1]); +// debug("label: %s", _tokens[1]); ctxt.z->_label = _vm->_gfx->renderFloatingLabel(_vm->_labelFont, _tokens[1]); ctxt.z->_flags &= ~kFlagsNoName; } |