diff options
author | Eugene Sandulenko | 2019-12-24 18:18:04 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-12-24 18:18:04 +0100 |
commit | 00f5d3fcdbd7b45138d342d528460a23bee57bb6 (patch) | |
tree | 4244f1431847f92a70aa4c2a9ca42ad64e209de8 /engines/director/score.cpp | |
parent | e3f22265503a52331057172b05d27d35341b1a30 (diff) | |
download | scummvm-rg350-00f5d3fcdbd7b45138d342d528460a23bee57bb6.tar.gz scummvm-rg350-00f5d3fcdbd7b45138d342d528460a23bee57bb6.tar.bz2 scummvm-rg350-00f5d3fcdbd7b45138d342d528460a23bee57bb6.zip |
DIRECTOR: Process non-BW bitmaps for D3
Diffstat (limited to 'engines/director/score.cpp')
-rw-r--r-- | engines/director/score.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/director/score.cpp b/engines/director/score.cpp index 8cb5513fdb..5e52251deb 100644 --- a/engines/director/score.cpp +++ b/engines/director/score.cpp @@ -303,11 +303,11 @@ void Score::loadSpriteImages(bool isSharedCast) { } int w = bitmapCast->_initialRect.width(), h = bitmapCast->_initialRect.height(); - debugC(4, kDebugImages, "Score::loadSpriteImages(): id: %d, w: %d, h: %d, flags: %x, some: %x, unk1: %d, unk2: %d", - imgId, w, h, bitmapCast->_flags, bitmapCast->_someFlaggyThing, bitmapCast->_unk1, bitmapCast->_unk2); + debugC(4, kDebugImages, "Score::loadSpriteImages(): id: %d, w: %d, h: %d, flags: %x, bytes: %x, bpp: %d unk2: %x", + imgId, w, h, bitmapCast->_flags, bitmapCast->_bytes, bitmapCast->_bitsPerPixel, bitmapCast->_unk2); if (pic != NULL && bitmapCast != NULL && w > 0 && h > 0) { - if (_vm->getVersion() < 4) { + if (_vm->getVersion() < 4 && 0) { img = new BITDDecoder(w, h); } else if (_vm->getVersion() < 6) { img = new BITDDecoderV4(w, h, bitmapCast->_bitsPerPixel, bitmapCast->_pitch); |