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

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Thu Feb 4 17:14:59 CET 2010


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

Log Message:
-----------
SCI: also adjusting bottom/right coordinate of plane rect

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-04 16:12:47 UTC (rev 47877)
+++ scummvm/trunk/engines/sci/graphics/frameout.cpp	2010-02-04 16:14:59 UTC (rev 47878)
@@ -140,6 +140,8 @@
 
 		planeRect.top = (planeRect.top * _screen->getHeight()) / planeResY;
 		planeRect.left = (planeRect.left * _screen->getWidth()) / planeResX;
+		planeRect.bottom = (planeRect.bottom * _screen->getHeight()) / planeResY;
+		planeRect.right = (planeRect.right * _screen->getWidth()) / planeResX;
 
 		// Fill our itemlist for this plane
 		itemCount = 0;


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