[Scummvm-cvs-logs] SF.net SVN: scummvm:[45472] scummvm/branches/branch-1-0-0/engines/gob/video .cpp

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Wed Oct 28 16:01:13 CET 2009


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

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

Modified Paths:
--------------
    scummvm/branches/branch-1-0-0/engines/gob/video.cpp

Modified: scummvm/branches/branch-1-0-0/engines/gob/video.cpp
===================================================================
--- scummvm/branches/branch-1-0-0/engines/gob/video.cpp	2009-10-28 15:00:43 UTC (rev 45471)
+++ scummvm/branches/branch-1-0-0/engines/gob/video.cpp	2009-10-28 15:01:13 UTC (rev 45472)
@@ -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