diff options
author | Bendegúz Nagy | 2016-08-08 16:41:07 +0200 |
---|---|---|
committer | Bendegúz Nagy | 2016-08-26 23:02:22 +0200 |
commit | 2994cf707b9a4051b43666c22dea31b92e5a3580 (patch) | |
tree | 851215a79033013d410946f0df78907a1d0de4bb | |
parent | a0543f75027510e44293ff518bc1ecf564066fbc (diff) | |
download | scummvm-rg350-2994cf707b9a4051b43666c22dea31b92e5a3580.tar.gz scummvm-rg350-2994cf707b9a4051b43666c22dea31b92e5a3580.tar.bz2 scummvm-rg350-2994cf707b9a4051b43666c22dea31b92e5a3580.zip |
DM: Fix mouse cursor dimensions
-rw-r--r-- | engines/dm/eventman.cpp | 2 |
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) { |