aboutsummaryrefslogtreecommitdiff
path: root/scumm/cursor.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-06-24 12:32:19 +0000
committerTravis Howell2004-06-24 12:32:19 +0000
commit622f3ec78fe4e8cc3e299a3dd4008d7a854928d8 (patch)
tree54922fe926716985e5030b2ebba496fbe017028c /scumm/cursor.cpp
parent974f3e64313be569ba2ad0f548ab4c0dc17f230a (diff)
downloadscummvm-rg350-622f3ec78fe4e8cc3e299a3dd4008d7a854928d8.tar.gz
scummvm-rg350-622f3ec78fe4e8cc3e299a3dd4008d7a854928d8.tar.bz2
scummvm-rg350-622f3ec78fe4e8cc3e299a3dd4008d7a854928d8.zip
Fix mouse cursors hotspot in HE games.
HE games don't change cursor hotspot, when changing cursor image. svn-id: r14027
Diffstat (limited to 'scumm/cursor.cpp')
-rw-r--r--scumm/cursor.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/scumm/cursor.cpp b/scumm/cursor.cpp
index b2c6f29676..0a0fbe47e3 100644
--- a/scumm/cursor.cpp
+++ b/scumm/cursor.cpp
@@ -160,11 +160,6 @@ void ScummEngine::setCursor(int cursor) {
void ScummEngine::setCursorHotspot(int x, int y) {
_cursor.hotspotX = x;
_cursor.hotspotY = y;
- // FIXME this hacks around offset cursor in the humongous games
- if (_features & GF_HUMONGOUS) {
- _cursor.hotspotX += 15;
- _cursor.hotspotY += 15;
- }
}
void ScummEngine::updateCursor() {