diff options
Diffstat (limited to 'engines/agos')
-rw-r--r-- | engines/agos/cursor.cpp | 4 |
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++) { |