diff options
author | Nipun Garg | 2019-06-21 05:14:22 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:16:53 +0200 |
commit | 3060427fe6967ebf8f3b8ebdc42db9bd15284bfb (patch) | |
tree | 0349d847e6bdfda19291a26b6d1587e57690e5c2 /engines | |
parent | 2d7c0adabd8823f5c224157a74eaecdabdd022cb (diff) | |
download | scummvm-rg350-3060427fe6967ebf8f3b8ebdc42db9bd15284bfb.tar.gz scummvm-rg350-3060427fe6967ebf8f3b8ebdc42db9bd15284bfb.tar.bz2 scummvm-rg350-3060427fe6967ebf8f3b8ebdc42db9bd15284bfb.zip |
HDB: Modify C_MOVECAMERA debug output
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hdb/ai-cinematic.cpp | 2 |
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); } |