[Scummvm-git-logs] scummvm master -> 74e2899156f6f71ba56737b8498f4b5dd9da3ca3
sev-
sev at scummvm.org
Fri Jul 24 15:05:40 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
74e2899156 DIRECTOR: Move debug output on a higher level
Commit: 74e2899156f6f71ba56737b8498f4b5dd9da3ca3
https://github.com/scummvm/scummvm/commit/74e2899156f6f71ba56737b8498f4b5dd9da3ca3
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-07-24T17:04:45+02:00
Commit Message:
DIRECTOR: Move debug output on a higher level
Changed paths:
engines/director/score.cpp
diff --git a/engines/director/score.cpp b/engines/director/score.cpp
index a18a5143e6..fce329da49 100644
--- a/engines/director/score.cpp
+++ b/engines/director/score.cpp
@@ -639,7 +639,7 @@ void Score::loadFrames(Common::SeekableSubReadStreamEndian &stream) {
while (size != 0 && !stream.eos()) {
uint16 frameSize = stream.readUint16();
- debugC(8, kDebugLoading, "++++++++++ score frame %d (frameSize %d) size %d", _frames.size(), frameSize, size);
+ debugC(3, kDebugLoading, "++++++++++ score frame %d (frameSize %d) size %d", _frames.size(), frameSize, size);
if (frameSize > 0) {
Frame *frame = new Frame(this, _numChannelsDisplayed);
More information about the Scummvm-git-logs
mailing list