diff options
author | Paul Gilbert | 2015-03-27 23:24:54 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-03-27 23:24:54 -0400 |
commit | 91df82c3e1599a658a7e4897bebf747e0e7fc189 (patch) | |
tree | 57421cbd7667bcaf60d2553f15ea8d3454438e94 | |
parent | c047009ee10d8de67ee17088aad4ca131d907a8a (diff) | |
download | scummvm-rg350-91df82c3e1599a658a7e4897bebf747e0e7fc189.tar.gz scummvm-rg350-91df82c3e1599a658a7e4897bebf747e0e7fc189.tar.bz2 scummvm-rg350-91df82c3e1599a658a7e4897bebf747e0e7fc189.zip |
SHERLOCK: Fix mouse cursor hotspots
-rw-r--r-- | engines/sherlock/events.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/events.cpp b/engines/sherlock/events.cpp index fef22c9301..d147fe1f4c 100644 --- a/engines/sherlock/events.cpp +++ b/engines/sherlock/events.cpp @@ -67,7 +67,7 @@ void Events::setCursor(CursorId cursorId) { // Set the cursor data Graphics::Surface &s = (*_cursorImages)[cursorId]; - CursorMan.replaceCursor(s.getPixels(), s.w, s.h, s.w / 2, s.h / 2, 0xff); + CursorMan.replaceCursor(s.getPixels(), s.w, s.h, 0, 0, 0xff); showCursor(); } |