[Scummvm-cvs-logs] SF.net SVN: scummvm:[45470] scummvm/trunk/engines/gob/video.cpp

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Wed Oct 28 15:57:13 CET 2009


Revision: 45470
          http://scummvm.svn.sourceforge.net/scummvm/?rev=45470&view=rev
Author:   drmccoy
Date:     2009-10-28 14:57:13 +0000 (Wed, 28 Oct 2009)

Log Message:
-----------
Fixing "graphical glitch in Bizoo level" (bug #2867361)

Modified Paths:
--------------
    scummvm/trunk/engines/gob/video.cpp

Modified: scummvm/trunk/engines/gob/video.cpp
===================================================================
--- scummvm/trunk/engines/gob/video.cpp	2009-10-28 14:56:32 UTC (rev 45469)
+++ scummvm/trunk/engines/gob/video.cpp	2009-10-28 14:57:13 UTC (rev 45470)
@@ -265,7 +265,7 @@
 		int screenX = _screenDeltaX;
 		int screenY = _screenDeltaY;
 		int screenWidth = MIN<int>(_surfWidth - _scrollOffsetX, _vm->_width);
-		int screenHeight = MIN<int>(_surfHeight - _splitHeight2 - _scrollOffsetY, _vm->_height);
+		int screenHeight = MIN<int>(_surfHeight - _splitHeight2 - _scrollOffsetY, _vm->_height - _splitHeight2);
 
 		dirtyRectsApply(_scrollOffsetX, _scrollOffsetY, screenWidth, screenHeight,
 				screenX, screenY);


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