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

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Mon Jul 26 18:49:04 CEST 2010


Revision: 51323
          http://scummvm.svn.sourceforge.net/scummvm/?rev=51323&view=rev
Author:   m_kiewitz
Date:     2010-07-26 16:49:04 +0000 (Mon, 26 Jul 2010)

Log Message:
-----------
SCI: fixing transition 9

fixes castle of dr. brain intro on amiga

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

Modified: scummvm/trunk/engines/sci/graphics/transitions.cpp
===================================================================
--- scummvm/trunk/engines/sci/graphics/transitions.cpp	2010-07-26 15:59:04 UTC (rev 51322)
+++ scummvm/trunk/engines/sci/graphics/transitions.cpp	2010-07-26 16:49:04 UTC (rev 51323)
@@ -539,7 +539,7 @@
 // only
 void GfxTransitions::verticalRollToCenter(bool blackoutFlag) {
 	Common::Rect leftRect = Common::Rect(_picRect.left, _picRect.top, _picRect.left + 1, _picRect.bottom);
-	Common::Rect rightRect = Common::Rect(leftRect.right - 1, _picRect.top, leftRect.right, _picRect.bottom);
+	Common::Rect rightRect = Common::Rect(_picRect.right - 1, _picRect.top, _picRect.right, _picRect.bottom);
 
 	while (leftRect.left < rightRect.right) {
 		copyRectToScreen(leftRect, blackoutFlag); leftRect.translate(1, 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