diff options
author | Max Horn | 2002-05-19 12:51:06 +0000 |
---|---|---|
committer | Max Horn | 2002-05-19 12:51:06 +0000 |
commit | db9cdefa408bfb4c5d97ef6e8aa0a0b39e40515f (patch) | |
tree | db89d47362c27416074907c0523adc0550885e7a | |
parent | d0ea67230662b259fabf85bf7bc1f78051ea1bc1 (diff) | |
download | scummvm-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
-rw-r--r-- | gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2525,7 +2525,7 @@ void Scumm::decompressDefaultCursor(int idx) _cursorWidth = 16; _cursorHeight = 16; _cursorHotspotX = 8; - _cursorHotspotY = 7; + _cursorHotspotY = 8; color = default_cursor_colors[idx]; |