aboutsummaryrefslogtreecommitdiff
path: root/engines/director/images.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2017-02-14 18:57:53 +0100
committerEugene Sandulenko2017-02-14 18:57:53 +0100
commit748878bf6b52a289902c78a5a3206d6db1aba270 (patch)
tree537b6bd6b5f847c6e61ad1e7c4f7d90569e27feb /engines/director/images.cpp
parent98b4d12d4c754068e3fc6cfbf603f77ceaf93d44 (diff)
downloadscummvm-rg350-748878bf6b52a289902c78a5a3206d6db1aba270.tar.gz
scummvm-rg350-748878bf6b52a289902c78a5a3206d6db1aba270.tar.bz2
scummvm-rg350-748878bf6b52a289902c78a5a3206d6db1aba270.zip
DIRECTOR: Hid noisy debug output
Diffstat (limited to 'engines/director/images.cpp')
-rw-r--r--engines/director/images.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/director/images.cpp b/engines/director/images.cpp
index 53e91ac494..4574165bb6 100644
--- a/engines/director/images.cpp
+++ b/engines/director/images.cpp
@@ -147,7 +147,7 @@ bool BITDDecoder::loadStream(Common::SeekableReadStream &stream) {
// If the stream has exactly the required number of bits for this image,
// we assume it is uncompressed.
if (stream.size() * 8 == _surface->pitch * _surface->h) {
- debugC(3, kDebugImages, "Skipping compression");
+ debugC(6, kDebugImages, "Skipping compression");
for (y = 0; y < _surface->h; y++) {
for (x = 0; x < _surface->pitch; ) {
byte color = stream.readByte();
@@ -265,7 +265,7 @@ bool BITDDecoderV4::loadStream(Common::SeekableReadStream &stream) {
// If the stream has exactly the required number of bits for this image,
// we assume it is uncompressed.
if (stream.size() * 8 == _surface->pitch * _surface->h) {
- debugC(3, kDebugImages, "Skipping compression");
+ debugC(6, kDebugImages, "Skipping compression");
for (y = 0; y < _surface->h; y++) {
for (x = 0; x < _surface->pitch; ) {
byte color = stream.readByte();