aboutsummaryrefslogtreecommitdiff
path: root/gfx.cpp
diff options
context:
space:
mode:
authorMax Horn2002-05-19 12:51:06 +0000
committerMax Horn2002-05-19 12:51:06 +0000
commitdb9cdefa408bfb4c5d97ef6e8aa0a0b39e40515f (patch)
treedb89d47362c27416074907c0523adc0550885e7a /gfx.cpp
parentd0ea67230662b259fabf85bf7bc1f78051ea1bc1 (diff)
downloadscummvm-rg350-db9cdefa408bfb4c5d97ef6e8aa0a0b39e40515f.tar.gz
scummvm-rg350-db9cdefa408bfb4c5d97ef6e8aa0a0b39e40515f.tar.bz2
scummvm-rg350-db9cdefa408bfb4c5d97ef6e8aa0a0b39e40515f.zip
fixed #557874 Cursor Offset - hotspot of default cursor was off by one
svn-id: r4357
Diffstat (limited to 'gfx.cpp')
-rw-r--r--gfx.cpp2
1 files changed, 1 insertions, 1 deletions
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];