aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/hdb.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2019-07-31 13:26:28 +0200
committerEugene Sandulenko2019-09-03 17:17:31 +0200
commitabaf1336a72453b42d2e7f955ec548f952f8e6a4 (patch)
tree98331563c0129c633540dc6817585d372a106e92 /engines/hdb/hdb.cpp
parent02d855b066b0d46c9e9a8ddac45ebc2a50d6a6a0 (diff)
downloadscummvm-rg350-abaf1336a72453b42d2e7f955ec548f952f8e6a4.tar.gz
scummvm-rg350-abaf1336a72453b42d2e7f955ec548f952f8e6a4.tar.bz2
scummvm-rg350-abaf1336a72453b42d2e7f955ec548f952f8e6a4.zip
HDB: Hid noisy debug messages, removed one unneeded stub
Diffstat (limited to 'engines/hdb/hdb.cpp')
-rw-r--r--engines/hdb/hdb.cpp12
1 files changed, 5 insertions, 7 deletions
diff --git a/engines/hdb/hdb.cpp b/engines/hdb/hdb.cpp
index 3d2bf3b3b2..5cd561542c 100644
--- a/engines/hdb/hdb.cpp
+++ b/engines/hdb/hdb.cpp
@@ -285,14 +285,12 @@ bool HDBGame::restartMap() {
_ai->getPlayerXY(&x, &y);
_map->centerMapXY(x + 16, y + 16);
- warning("STUB: Cheating - Lua Validation");
-
- debug(1, "Action List Info:");
+ debug(5, "Action List Info:");
for (int k = 0; k < 20; k++) {
- debug(1, "Action %d: entityName: %s", k, _ai->_actions[k].entityName);
- debug(1, "Action %d: x1: %d, y1: %d", k, _ai->_actions[k].x1, _ai->_actions[k].y1);
- debug(1, "Action %d: x2: %d, y2: %d", k, _ai->_actions[k].x2, _ai->_actions[k].y2);
- debug(1, "Action %d: luaFuncInit: %s, luaFuncUse: %s", k, _ai->_actions[k].luaFuncInit, _ai->_actions[k].luaFuncUse);
+ debug(5, "Action %d: entityName: %s", k, _ai->_actions[k].entityName);
+ debug(5, "Action %d: x1: %d, y1: %d", k, _ai->_actions[k].x1, _ai->_actions[k].y1);
+ debug(5, "Action %d: x2: %d, y2: %d", k, _ai->_actions[k].x2, _ai->_actions[k].y2);
+ debug(5, "Action %d: luaFuncInit: %s, luaFuncUse: %s", k, _ai->_actions[k].luaFuncInit, _ai->_actions[k].luaFuncUse);
}
return true;