aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBendegúz Nagy2016-08-08 16:41:07 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commit2994cf707b9a4051b43666c22dea31b92e5a3580 (patch)
tree851215a79033013d410946f0df78907a1d0de4bb
parenta0543f75027510e44293ff518bc1ecf564066fbc (diff)
downloadscummvm-rg350-2994cf707b9a4051b43666c22dea31b92e5a3580.tar.gz
scummvm-rg350-2994cf707b9a4051b43666c22dea31b92e5a3580.tar.bz2
scummvm-rg350-2994cf707b9a4051b43666c22dea31b92e5a3580.zip
DM: Fix mouse cursor dimensions
-rw-r--r--engines/dm/eventman.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dm/eventman.cpp b/engines/dm/eventman.cpp
index 0a9586bfa4..82c8050070 100644
--- a/engines/dm/eventman.cpp
+++ b/engines/dm/eventman.cpp
@@ -1002,7 +1002,7 @@ void EventManager::setMousePointerFromSpriteData(byte* mouseSprite) {
}
}
- CursorMan.replaceCursor(bitmap, 16, 32, 0, 0, 0);
+ CursorMan.replaceCursor(bitmap, 16, 18, 0, 0, 0);
}
void EventManager::f368_commandSetLeader(ChampionIndex champIndex) {