[Scummvm-cvs-logs] SF.net SVN: scummvm: [25624] scummvm/trunk/engines/agos/cursor.cpp

kirben at users.sourceforge.net kirben at users.sourceforge.net
Fri Feb 16 11:33:37 CET 2007


Revision: 25624
          http://scummvm.svn.sourceforge.net/scummvm/?rev=25624&view=rev
Author:   kirben
Date:     2007-02-16 02:33:37 -0800 (Fri, 16 Feb 2007)

Log Message:
-----------
Fix cursor palette regression in Simon the Sorcerer 1.

Modified Paths:
--------------
    scummvm/trunk/engines/agos/cursor.cpp

Modified: scummvm/trunk/engines/agos/cursor.cpp
===================================================================
--- scummvm/trunk/engines/agos/cursor.cpp	2007-02-16 09:28:22 UTC (rev 25623)
+++ scummvm/trunk/engines/agos/cursor.cpp	2007-02-16 10:33:37 UTC (rev 25624)
@@ -485,9 +485,9 @@
 		_mouseData = (byte *)calloc(_maxCursorWidth * _maxCursorHeight, 1);
 		memset(_mouseData, 0xFF, _maxCursorWidth * _maxCursorHeight);
 
-		uint8 color = 241;
+		uint8 color = 225;
 		if (getPlatform() == Common::kPlatformAmiga)
-			color = (getFeatures() & GF_32COLOR) ? 17 : 241;
+			color = (getFeatures() & GF_32COLOR) ? 17 : 225;
 
 		const uint16 *src = _common_cursors[0];
 		for (int i = 0; i < 16; i++) {


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