From db9cdefa408bfb4c5d97ef6e8aa0a0b39e40515f Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 19 May 2002 12:51:06 +0000 Subject: fixed #557874 Cursor Offset - hotspot of default cursor was off by one svn-id: r4357 --- gfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gfx.cpp') diff --git a/gfx.cpp b/gfx.cpp index 94409179b8..dccf1e46b2 100644 --- a/gfx.cpp +++ b/gfx.cpp @@ -2525,7 +2525,7 @@ void Scumm::decompressDefaultCursor(int idx) _cursorWidth = 16; _cursorHeight = 16; _cursorHotspotX = 8; - _cursorHotspotY = 7; + _cursorHotspotY = 8; color = default_cursor_colors[idx]; -- cgit v1.2.3