aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2019-12-27 13:30:40 +0100
committerEugene Sandulenko2019-12-27 13:39:56 +0100
commit38c488f2ca611b9d29b0bd7d61a0a6821940aac4 (patch)
treeccf75e5b315e63417c430946562f23d5489538fe
parent4e58ef479bb4c63e3a0e73e35f915658b9a923c3 (diff)
downloadscummvm-rg350-38c488f2ca611b9d29b0bd7d61a0a6821940aac4.tar.gz
scummvm-rg350-38c488f2ca611b9d29b0bd7d61a0a6821940aac4.tar.bz2
scummvm-rg350-38c488f2ca611b9d29b0bd7d61a0a6821940aac4.zip
DIRECTOR: More debug output
-rw-r--r--engines/director/score.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/director/score.cpp b/engines/director/score.cpp
index cdf00b2929..94d80d1566 100644
--- a/engines/director/score.cpp
+++ b/engines/director/score.cpp
@@ -544,6 +544,8 @@ void Score::loadConfig(Common::SeekableSubReadStreamEndian &stream) {
", style: %d", len, ver1, _currentFrameRate, lightswitch, unk1, commentFont, commentSize, commentStyle);
debugC(1, kDebugLoading, "Score::loadConfig(): stagecolor: %d, depth: %d, color: %d, rgb: 0x%04x 0x%04x 0x%04x",
_stageColor, bitdepth, color, stageColorR, stageColorG, stageColorB);
+ if (debugChannelSet(1, kDebugLoading))
+ _movieRect.debugPrint(1, "Score::loadConfig(): Movie rect: ");
debugC(1, kDebugLoading, "Score::loadConfig(): %d bytes left", stream.size() - stream.pos());
}