[Scummvm-cvs-logs] SF.net SVN: scummvm:[54430] scummvm/trunk/engines/mohawk/bitmap.cpp

mthreepwood at users.sourceforge.net mthreepwood at users.sourceforge.net
Tue Nov 23 19:15:45 CET 2010


Revision: 54430
          http://scummvm.svn.sourceforge.net/scummvm/?rev=54430&view=rev
Author:   mthreepwood
Date:     2010-11-23 18:15:45 +0000 (Tue, 23 Nov 2010)

Log Message:
-----------
MOHAWK: Remove the no longer needed RLE8 hack

Modified Paths:
--------------
    scummvm/trunk/engines/mohawk/bitmap.cpp

Modified: scummvm/trunk/engines/mohawk/bitmap.cpp
===================================================================
--- scummvm/trunk/engines/mohawk/bitmap.cpp	2010-11-23 16:03:30 UTC (rev 54429)
+++ scummvm/trunk/engines/mohawk/bitmap.cpp	2010-11-23 18:15:45 UTC (rev 54430)
@@ -564,10 +564,6 @@
 		byte *dst = (byte *)surface->pixels + i * _header.width;
 		int16 remaining = _header.width;
 
-		// HACK: It seems only the bottom 9 bits are valid for images
-		// TODO: Verify if this is still needed after the buffer clearing fix.
-		rowByteCount &= 0x1ff;
-
 		while (remaining > 0) {
 			byte code = _data->readByte();
 			uint16 runLen = (code & 0x7F) + 1;


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