aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
diff options
context:
space:
mode:
authorNicola Mettifogo2009-03-22 23:07:08 +0000
committerNicola Mettifogo2009-03-22 23:07:08 +0000
commit77c97670a3cb57f5fb11e68a3d99be37f9507a08 (patch)
tree90560c127a97575e94fa607ba3141392cf43d373 /engines/parallaction
parent00907f32bdc76dbca34ed84933573769952d0756 (diff)
downloadscummvm-rg350-77c97670a3cb57f5fb11e68a3d99be37f9507a08.tar.gz
scummvm-rg350-77c97670a3cb57f5fb11e68a3d99be37f9507a08.tar.bz2
scummvm-rg350-77c97670a3cb57f5fb11e68a3d99be37f9507a08.zip
Added support for 3 bit deep ILBM images.
svn-id: r39619
Diffstat (limited to 'engines/parallaction')
-rw-r--r--engines/parallaction/iff.cpp2
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) {