diff options
author | Eugene Sandulenko | 2019-06-29 15:05:08 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:05 +0200 |
commit | 9182e0df177eb4c2c8ceb819c0f7fbca1064146d (patch) | |
tree | e07f3fa09f362e3315ffde5df4c1b019373ce089 | |
parent | 1f920a201edc97a06f90d9a60d8b626f437d8faa (diff) | |
download | scummvm-rg350-9182e0df177eb4c2c8ceb819c0f7fbca1064146d.tar.gz scummvm-rg350-9182e0df177eb4c2c8ceb819c0f7fbca1064146d.tar.bz2 scummvm-rg350-9182e0df177eb4c2c8ceb819c0f7fbca1064146d.zip |
HDB: Made debug output more compact
-rw-r--r-- | engines/hdb/ai-lists.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/hdb/ai-lists.cpp b/engines/hdb/ai-lists.cpp index 1a7b794e87..0e91db4602 100644 --- a/engines/hdb/ai-lists.cpp +++ b/engines/hdb/ai-lists.cpp @@ -70,7 +70,6 @@ void AI::addAnimateTarget(int x, int y, int start, int end, AnimSpeed speed, boo snprintf(name, 32, "%s0%d", tileName, i + 1); else snprintf(name, 32, "%s%d", tileName, i + 1); - debug("AddAnimateTarget: %s", name); size = g_hdb->_fileMan->getLength(name, TYPE_TILE32); at->gfxList[i] = g_hdb->_drawMan->getTileGfx(name, size); } @@ -93,8 +92,7 @@ void AI::animateTargets() { for (uint i = 0; i < _animTargets.size(); i++) { at = _animTargets[i]; - debug(9, "i: %d", i); - debug(9, "at: at->x: %d, at->y: %d, at->start: %d, at->end: %d, at->vel: %d", at->x, at->y, at->start, at->end, at->vel); + debug(9, "AnimTarget #%i: at: at->x: %d, at->y: %d, at->start: %d, at->end: %d, at->vel: %d", i, at->x, at->y, at->start, at->end, at->vel); // Draw Non-map stuff every frame if (!at->inMap) |