From 8f0a3e8961f5513059b35e1f8d406de1f667d65c Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Fri, 16 Feb 2007 10:36:33 +0000 Subject: [PATCH] Fix cursor palette regression in Simon the Sorcerer 1. svn-id: r25625 --- engines/agos/cursor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/agos/cursor.cpp b/engines/agos/cursor.cpp index e7b859fe131..bd8d4dbc1ca 100644 --- a/engines/agos/cursor.cpp +++ b/engines/agos/cursor.cpp @@ -487,7 +487,7 @@ void AGOSEngine::initMouse() { uint8 color = 225; if (getPlatform() == Common::kPlatformAmiga) - color = (getFeatures() & GF_32COLOR) ? 17 : 225; + color = (getFeatures() & GF_32COLOR) ? 17 : 241; const uint16 *src = _common_cursors[0]; for (int i = 0; i < 16; i++) {