[Scummvm-cvs-logs] SF.net SVN: scummvm:[55030] scummvm/trunk/engines/mohawk/myst_stacks/myst. cpp

bgk at users.sourceforge.net bgk at users.sourceforge.net
Fri Dec 24 11:52:02 CET 2010


Revision: 55030
          http://scummvm.svn.sourceforge.net/scummvm/?rev=55030&view=rev
Author:   bgk
Date:     2010-12-24 10:52:02 +0000 (Fri, 24 Dec 2010)

Log Message:
-----------
MOHAWK: Fix Myst's combination book pages drawing at the bottom of the screen.

Modified Paths:
--------------
    scummvm/trunk/engines/mohawk/myst_stacks/myst.cpp

Modified: scummvm/trunk/engines/mohawk/myst_stacks/myst.cpp
===================================================================
--- scummvm/trunk/engines/mohawk/myst_stacks/myst.cpp	2010-12-24 02:09:59 UTC (rev 55029)
+++ scummvm/trunk/engines/mohawk/myst_stacks/myst.cpp	2010-12-24 10:52:02 UTC (rev 55030)
@@ -2350,7 +2350,7 @@
 
 		_libraryBookPage = CLIP<int16>(_libraryBookPage, 0, _libraryBookNumPages - 1);
 
-		Common::Rect rect = Common::Rect(157, 115, 544, 333);
+		Common::Rect rect = Common::Rect(157, 113, 446, 220);
 		_vm->_gfx->copyImageToScreen(_libraryBookBaseImage + _libraryBookPage, rect);
 
 		if (_vm->_rnd->getRandomBit())
@@ -2376,7 +2376,7 @@
 
 		_libraryBookPage = CLIP<uint16>(_libraryBookPage, 0, _libraryBookNumPages - 1);
 
-		Common::Rect rect = Common::Rect(157, 115, 544, 333);
+		Common::Rect rect = Common::Rect(157, 113, 446, 220);
 		_vm->_gfx->copyImageToScreen(_libraryBookBaseImage + _libraryBookPage, rect);
 
 		if (_vm->_rnd->getRandomBit())


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