diff options
-rw-r--r-- | engines/parallaction/iff.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/iff.cpp b/engines/parallaction/iff.cpp index 8f8ba0a838..c15e8fcbd2 100644 --- a/engines/parallaction/iff.cpp +++ b/engines/parallaction/iff.cpp @@ -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) { |