aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/cursor.cpp
diff options
context:
space:
mode:
authorTravis Howell2007-02-16 10:33:37 +0000
committerTravis Howell2007-02-16 10:33:37 +0000
commit3aaf15938dd1dced630a574396da6cb7253c04ca (patch)
treefa75226842497e0c42fbe7d31e3bf33b1101d7e9 /engines/agos/cursor.cpp
parentcce2617f24d156f1e56487f1317acb5348560464 (diff)
downloadscummvm-rg350-3aaf15938dd1dced630a574396da6cb7253c04ca.tar.gz
scummvm-rg350-3aaf15938dd1dced630a574396da6cb7253c04ca.tar.bz2
scummvm-rg350-3aaf15938dd1dced630a574396da6cb7253c04ca.zip
Fix cursor palette regression in Simon the Sorcerer 1.
svn-id: r25624
Diffstat (limited to 'engines/agos/cursor.cpp')
-rw-r--r--engines/agos/cursor.cpp4
1 files changed, 2 insertions, 2 deletions
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++) {