From 6b26f76f707ebd328e6c490198d8fdb80911e503 Mon Sep 17 00:00:00 2001 From: Martin Kiewitz Date: Tue, 2 Feb 2010 16:29:14 +0000 Subject: SCI: frameout ignoring 0xFFFE for picture id as well (must be some other magic value) svn-id: r47815 --- engines/sci/graphics/frameout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/sci/graphics') 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(); } -- cgit v1.2.3