diff options
-rw-r--r-- | engines/scumm/cursor.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/engines/scumm/cursor.cpp b/engines/scumm/cursor.cpp index 66dd3807db..957370b8fe 100644 --- a/engines/scumm/cursor.cpp +++ b/engines/scumm/cursor.cpp @@ -111,13 +111,7 @@ void ScummEngine_v6::setCursorTransparency(int a) { } void ScummEngine::updateCursor() { - //HACK Put the 16-bit mapped color, and - //hope no other palette entry shares it int transColor = (_game.heversion >= 80) ? 5 : 255; - if (_game.features & GF_16BIT_COLOR && _hePalettes) - transColor = READ_LE_UINT16(_hePalettes + 2048 + transColor * 2); - else - transColor = 0; CursorMan.replaceCursor(_grabbedCursor, _cursor.width, _cursor.height, _cursor.hotspotX, _cursor.hotspotY, (_game.platform == Common::kPlatformNES ? _grabbedCursor[63] : transColor), |