diff options
author | Travis Howell | 2007-02-16 10:36:33 +0000 |
---|---|---|
committer | Travis Howell | 2007-02-16 10:36:33 +0000 |
commit | 8f0a3e8961f5513059b35e1f8d406de1f667d65c (patch) | |
tree | db8422070b27c4dc05c89847471b497ad230c561 | |
parent | 3aaf15938dd1dced630a574396da6cb7253c04ca (diff) | |
download | scummvm-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
-rw-r--r-- | engines/agos/cursor.cpp | 2 |
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++) { |