[Scummvm-cvs-logs] SF.net SVN: scummvm:[45239] scummvm/trunk/engines/sci/engine/kgraphics.cpp

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Sun Oct 18 22:34:37 CEST 2009


Revision: 45239
          http://scummvm.svn.sourceforge.net/scummvm/?rev=45239&view=rev
Author:   m_kiewitz
Date:     2009-10-18 20:34:37 +0000 (Sun, 18 Oct 2009)

Log Message:
-----------
SCI: kDrawCel priority is signed

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/kgraphics.cpp

Modified: scummvm/trunk/engines/sci/engine/kgraphics.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/kgraphics.cpp	2009-10-18 20:33:02 UTC (rev 45238)
+++ scummvm/trunk/engines/sci/engine/kgraphics.cpp	2009-10-18 20:34:37 UTC (rev 45239)
@@ -888,7 +888,7 @@
 	GuiViewCelNo celNo = argv[2].toSint16();
 	int x = argv[3].toSint16();
 	int y = argv[4].toSint16();
-	int priority = (argc > 5) ? argv[5].toUint16()  : -1;
+	int priority = (argc > 5) ? argv[5].toSint16()  : -1;
 	int paletteNo = (argc > 6) ? argv[6].toSint16() : 0;
 
 	s->_gui->drawCel(viewId, loopNo, celNo, x, y, priority, paletteNo);


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