add hack that attempts to workaround the offset hotspot problem in humongous games

svn-id: r6670
This commit is contained in:
Jonathan Gray 2003-03-03 01:53:18 +00:00
parent 186480c839
commit 436afde5eb

View File

@ -3097,6 +3097,11 @@ void Scumm::setCursorHotspot2(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 Scumm::updateCursor()