diff options
author | Chris Apers | 2004-11-09 16:04:36 +0000 |
---|---|---|
committer | Chris Apers | 2004-11-09 16:04:36 +0000 |
commit | d4dee021fcb883143b9a4e0d1230f46da5d2a7d4 (patch) | |
tree | 073e2389327ddb179bf0b8e928699639e9882ac3 /scumm | |
parent | d21e876d6ad2c544b8718496ae663adcadc029d8 (diff) | |
download | scummvm-rg350-d4dee021fcb883143b9a4e0d1230f46da5d2a7d4.tar.gz scummvm-rg350-d4dee021fcb883143b9a4e0d1230f46da5d2a7d4.tar.bz2 scummvm-rg350-d4dee021fcb883143b9a4e0d1230f46da5d2a7d4.zip |
Cleanup
svn-id: r15773
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/cursor.cpp | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/scumm/cursor.cpp b/scumm/cursor.cpp index d3074094ec..08dc983f73 100644 --- a/scumm/cursor.cpp +++ b/scumm/cursor.cpp @@ -42,7 +42,7 @@ static const byte default_cursor_colors[4] = { }; -static const uint16 default_cursor_images[5][16] = { +static const uint16 default_cursor_images[4][16] = { /* cross-hair */ { 0x0080, 0x0080, 0x0080, 0x0080, 0x0080, 0x0080, 0x0000, 0x7e3f, 0x0000, 0x0080, 0x0080, 0x0080, 0x0080, 0x0080, 0x0080, 0x0000 }, @@ -55,13 +55,6 @@ static const uint16 default_cursor_images[5][16] = { /* hand */ { 0x1e00, 0x1200, 0x1200, 0x1200, 0x1200, 0x13ff, 0x1249, 0x1249, 0xf249, 0x9001, 0x9001, 0x9001, 0x8001, 0x8001, 0x8001, 0xffff }, - /* cross-hair zak256 - chrilith palmos */ -/* - { 0x0080, 0x0080, 0x02a0, 0x01c0, 0x0080, 0x1004, 0x0808, 0x7c1f, - 0x0808, 0x1004, 0x0080, 0x01c0, 0x02a0, 0x0080, 0x0080, 0x0000 }, -*/ - { 0x0080, 0x02a0, 0x01c0, 0x0080, 0x0000, 0x2002, 0x1004, 0x780f, - 0x1004, 0x2002, 0x0000, 0x0080, 0x01c0, 0x02a0, 0x0080, 0x0000 }, }; static const byte default_cursor_hotspots[10] = { @@ -387,14 +380,6 @@ void ScummEngine_v5::setBuiltinCursor(int idx) { _cursor.hotspotY = _cursorHotspots[2 * _currentCursor + 1]; src = _cursorImages[_currentCursor]; -#ifdef __PALM_OS__ - if (_gameId == GID_ZAK256 && _currentCursor == 0) { - _cursor.hotspotX = default_cursor_hotspots[2 * 4]; - _cursor.hotspotY = default_cursor_hotspots[2 * 4 + 1]; - src = default_cursor_images[4]; - } -#endif - _cursor.width = 16; _cursor.height = 16; |