aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/access/events.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/access/events.cpp b/engines/access/events.cpp
index 15c8f8cff0..7366905b0c 100644
--- a/engines/access/events.cpp
+++ b/engines/access/events.cpp
@@ -56,7 +56,7 @@ void EventsManager::setCursor(CursorType cursorId) {
if (cursorId == CURSOR_INVENTORY) {
// Set the cursor
CursorMan.replaceCursor(_invCursor.getPixels(), _invCursor.w, _invCursor.h,
- 0, 0, 0);
+ _invCursor.w / 2, _invCursor.h / 2, 0);
} else {
// Get a pointer to the mouse data to use, and get the cursor hotspot
const byte *srcP = Amazon::CURSORS[cursorId];