[Scummvm-cvs-logs] SF.net SVN: scummvm:[53456] scummvm/trunk/engines/scumm/he/wiz_he.cpp

sev at users.sourceforge.net sev at users.sourceforge.net
Thu Oct 14 20:19:51 CEST 2010


Revision: 53456
          http://scummvm.svn.sourceforge.net/scummvm/?rev=53456&view=rev
Author:   sev
Date:     2010-10-14 18:19:51 +0000 (Thu, 14 Oct 2010)

Log Message:
-----------
SCUMM: Fix bug #2952298 with 16-bit HE cursors on Amiga

Bug #2952298: "HE (16Bit): Inventory items (Cursors) have wrong color"
This appeared to be generic BE bug. Thanks to jvprat for nailing it down
and providing the patch.

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/he/wiz_he.cpp

Modified: scummvm/trunk/engines/scumm/he/wiz_he.cpp
===================================================================
--- scummvm/trunk/engines/scumm/he/wiz_he.cpp	2010-10-14 13:19:32 UTC (rev 53455)
+++ scummvm/trunk/engines/scumm/he/wiz_he.cpp	2010-10-14 18:19:51 UTC (rev 53456)
@@ -363,7 +363,7 @@
 		break;
 	case kDstMemory:
 	case kDstResource:
-		WRITE_LE_UINT16(dstPtr, color);
+		WRITE_UINT16(dstPtr, color);
 		break;
 	default:
 		error("writeColor: Unknown dstType %d", dstType);


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