diff options
author | Nipun Garg | 2019-06-20 05:24:53 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:16:51 +0200 |
commit | 8810def2b257601d61013bb255d87521910c47e5 (patch) | |
tree | 094d4358d3713989803f0550ace205c69fc75672 /engines/hdb | |
parent | 266bcfb97add23f46be7e2a125190f9e3598f7bc (diff) | |
download | scummvm-rg350-8810def2b257601d61013bb255d87521910c47e5.tar.gz scummvm-rg350-8810def2b257601d61013bb255d87521910c47e5.tar.bz2 scummvm-rg350-8810def2b257601d61013bb255d87521910c47e5.zip |
HDB: Add debug output to C_SETENTITY
Diffstat (limited to 'engines/hdb')
-rw-r--r-- | engines/hdb/ai-cinematic.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/hdb/ai-cinematic.cpp b/engines/hdb/ai-cinematic.cpp index 7159f9ae60..bc89afe0ac 100644 --- a/engines/hdb/ai-cinematic.cpp +++ b/engines/hdb/ai-cinematic.cpp @@ -143,6 +143,7 @@ void AI::processCines() { _cine[i]->e->tileY = (int)_cine[i]->y / kTileHeight; _cine[i]->e->y = (int)_cine[i]->y; _cine[i]->e->level = (int)_cine[i]->x2; + debug(2, "Found '%s' in setEntity", _cine[i]->string); } else { warning("Can't locate '%s' in setEntity", _cine[i]->string); } |