[Scummvm-cvs-logs] SF.net SVN: scummvm:[47815] scummvm/trunk/engines/sci/graphics/frameout.cpp

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Tue Feb 2 17:29:14 CET 2010


Revision: 47815
          http://scummvm.svn.sourceforge.net/scummvm/?rev=47815&view=rev
Author:   m_kiewitz
Date:     2010-02-02 16:29:14 +0000 (Tue, 02 Feb 2010)

Log Message:
-----------
SCI: frameout ignoring 0xFFFE for picture id as well (must be some other magic value)

Modified Paths:
--------------
    scummvm/trunk/engines/sci/graphics/frameout.cpp

Modified: scummvm/trunk/engines/sci/graphics/frameout.cpp
===================================================================
--- scummvm/trunk/engines/sci/graphics/frameout.cpp	2010-02-02 16:25:35 UTC (rev 47814)
+++ scummvm/trunk/engines/sci/graphics/frameout.cpp	2010-02-02 16:29:14 UTC (rev 47815)
@@ -124,7 +124,7 @@
 			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();
 		}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list