aboutsummaryrefslogtreecommitdiff
path: root/engines/agos
diff options
context:
space:
mode:
authorTravis Howell2007-02-16 10:36:33 +0000
committerTravis Howell2007-02-16 10:36:33 +0000
commit8f0a3e8961f5513059b35e1f8d406de1f667d65c (patch)
treedb8422070b27c4dc05c89847471b497ad230c561 /engines/agos
parent3aaf15938dd1dced630a574396da6cb7253c04ca (diff)
downloadscummvm-rg350-8f0a3e8961f5513059b35e1f8d406de1f667d65c.tar.gz
scummvm-rg350-8f0a3e8961f5513059b35e1f8d406de1f667d65c.tar.bz2
scummvm-rg350-8f0a3e8961f5513059b35e1f8d406de1f667d65c.zip
Fix cursor palette regression in Simon the Sorcerer 1.
svn-id: r25625
Diffstat (limited to 'engines/agos')
-rw-r--r--engines/agos/cursor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agos/cursor.cpp b/engines/agos/cursor.cpp
index e7b859fe13..bd8d4dbc1c 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++) {