aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNipun Garg2019-06-21 05:14:22 +0530
committerEugene Sandulenko2019-09-03 17:16:53 +0200
commit3060427fe6967ebf8f3b8ebdc42db9bd15284bfb (patch)
tree0349d847e6bdfda19291a26b6d1587e57690e5c2
parent2d7c0adabd8823f5c224157a74eaecdabdd022cb (diff)
downloadscummvm-rg350-3060427fe6967ebf8f3b8ebdc42db9bd15284bfb.tar.gz
scummvm-rg350-3060427fe6967ebf8f3b8ebdc42db9bd15284bfb.tar.bz2
scummvm-rg350-3060427fe6967ebf8f3b8ebdc42db9bd15284bfb.zip
HDB: Modify C_MOVECAMERA debug output
-rw-r--r--engines/hdb/ai-cinematic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/ai-cinematic.cpp b/engines/hdb/ai-cinematic.cpp
index 100d335dca..ee67737074 100644
--- a/engines/hdb/ai-cinematic.cpp
+++ b/engines/hdb/ai-cinematic.cpp
@@ -291,7 +291,7 @@ void AI::cineMoveCamera(int x, int y, int speed) {
cmd->x = x * kTileWidth;
cmd->y = y * kTileHeight;
cmd->speed = speed;
- debug("Setting up C_MOVECAMERA: x: %f, y: %f", cmd->x, cmd->y);
+ debug(2, "Setting up C_MOVECAMERA: x: %f, y: %f", cmd->x, cmd->y);
cmd->cmdType = C_MOVECAMERA;
_cine.push_back(cmd);
}