From 3aaf15938dd1dced630a574396da6cb7253c04ca Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Fri, 16 Feb 2007 10:33:37 +0000 Subject: Fix cursor palette regression in Simon the Sorcerer 1. svn-id: r25624 --- engines/agos/cursor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/agos/cursor.cpp') diff --git a/engines/agos/cursor.cpp b/engines/agos/cursor.cpp index d127821d2a..e7b859fe13 100644 --- a/engines/agos/cursor.cpp +++ b/engines/agos/cursor.cpp @@ -485,9 +485,9 @@ void AGOSEngine::initMouse() { _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++) { -- cgit v1.2.3