aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/graphics')
-rw-r--r--engines/sci/graphics/frameout.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/graphics/frameout.cpp b/engines/sci/graphics/frameout.cpp
index 09251d0ce2..68d52bba50 100644
--- a/engines/sci/graphics/frameout.cpp
+++ b/engines/sci/graphics/frameout.cpp
@@ -124,7 +124,7 @@ void GfxFrameout::kernelFrameout() {
continue;
planePictureNr = GET_SEL32V(_segMan, planeObject, picture);
- if (planePictureNr != 0xFFFF) {
+ if ((planePictureNr != 0xFFFF) && (planePictureNr != 0xFFFE)) {
planePicture = new SciGuiPicture(_resMan, 0, _screen, _palette, planePictureNr, false);
planePictureCels = planePicture->getSci32celCount();
}