diff options
author | Eugene Sandulenko | 2019-12-27 13:30:40 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-12-27 13:39:56 +0100 |
commit | 38c488f2ca611b9d29b0bd7d61a0a6821940aac4 (patch) | |
tree | ccf75e5b315e63417c430946562f23d5489538fe /engines/director | |
parent | 4e58ef479bb4c63e3a0e73e35f915658b9a923c3 (diff) | |
download | scummvm-rg350-38c488f2ca611b9d29b0bd7d61a0a6821940aac4.tar.gz scummvm-rg350-38c488f2ca611b9d29b0bd7d61a0a6821940aac4.tar.bz2 scummvm-rg350-38c488f2ca611b9d29b0bd7d61a0a6821940aac4.zip |
DIRECTOR: More debug output
Diffstat (limited to 'engines/director')
-rw-r--r-- | engines/director/score.cpp | 2 |
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()); } |