aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/ai-cinematic.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2019-06-26 08:52:37 +0200
committerEugene Sandulenko2019-09-03 17:17:00 +0200
commitaa793bdcfdb95400cc159cac3afe30f0c332cae8 (patch)
tree211712bb52a926d3be2923ef7b641c3ba472998e /engines/hdb/ai-cinematic.cpp
parent37a393e9e1f7e4b477caca016be707b82073d932 (diff)
downloadscummvm-rg350-aa793bdcfdb95400cc159cac3afe30f0c332cae8.tar.gz
scummvm-rg350-aa793bdcfdb95400cc159cac3afe30f0c332cae8.tar.bz2
scummvm-rg350-aa793bdcfdb95400cc159cac3afe30f0c332cae8.zip
HDB: Added more debug output and hid some verbose stubs
Diffstat (limited to 'engines/hdb/ai-cinematic.cpp')
-rw-r--r--engines/hdb/ai-cinematic.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/hdb/ai-cinematic.cpp b/engines/hdb/ai-cinematic.cpp
index 4b906bdf3a..85944a157b 100644
--- a/engines/hdb/ai-cinematic.cpp
+++ b/engines/hdb/ai-cinematic.cpp
@@ -193,8 +193,7 @@ void AI::processCines() {
warning("Can't locate '%s' in moveEntity", _cine[i]->title);
}
} else {
- debug(3, "C_MOVEENTITY: _cine[%d]->e->tileX: %d, _cine[%d]->e->goalX: %d", i, _cine[i]->e->tileX, i, _cine[i]->e->goalX);
- debug(3, "C_MOVEENTITY: _cine[%d]->e->tileY: %d, _cine[%d]->e->goalY: %d", i, _cine[i]->e->tileY, i, _cine[i]->e->goalY);
+ debug(3, "C_MOVEENTITY: %d, %s tileX: %d, goalX: %d tileY %d, goalY: %d", i, AIType2Str(_cine[i]->e->type), _cine[i]->e->tileX, _cine[i]->e->goalX, _cine[i]->e->tileY, _cine[i]->e->goalY);
if (!_cine[i]->e->goalX) {
complete = true;
}