mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-20 08:53:51 +00:00
Added support for 3 bit deep ILBM images.
svn-id: r39619
This commit is contained in:
parent
00907f32bd
commit
77c97670a3
@ -175,7 +175,7 @@ byte *ILBMDecoder::getPalette() {
|
||||
|
||||
byte *ILBMDecoder::getBitmap(uint32 numPlanes, bool packPlanes) {
|
||||
assert(_bodySize != (uint32)-1);
|
||||
assert(numPlanes == 1 || numPlanes == 2 || numPlanes == 4 || numPlanes == 5 || numPlanes == 8);
|
||||
assert(numPlanes == 1 || numPlanes == 2 || numPlanes == 3 || numPlanes == 4 || numPlanes == 5 || numPlanes == 8);
|
||||
|
||||
numPlanes = MIN(numPlanes, (uint32)_header.depth);
|
||||
if (numPlanes > 4) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user