diff options
author | Paul Gilbert | 2015-04-21 01:26:47 -0500 |
---|---|---|
committer | Paul Gilbert | 2015-04-21 01:26:47 -0500 |
commit | 6d2bde38ec883f00b9e4254f869e6349b21e0d28 (patch) | |
tree | f572cc5ad2078a62fcc93497125af3676d4c1b3a | |
parent | 7e1e0ed3ac7ca8b3233503476162c1ca1e79e0a8 (diff) | |
download | scummvm-rg350-6d2bde38ec883f00b9e4254f869e6349b21e0d28.tar.gz scummvm-rg350-6d2bde38ec883f00b9e4254f869e6349b21e0d28.tar.bz2 scummvm-rg350-6d2bde38ec883f00b9e4254f869e6349b21e0d28.zip |
SHERLOCK: Fix display of cursor
-rw-r--r-- | engines/sherlock/events.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sherlock/events.cpp b/engines/sherlock/events.cpp index 79fe1b58d4..1a827eda3b 100644 --- a/engines/sherlock/events.cpp +++ b/engines/sherlock/events.cpp @@ -76,6 +76,7 @@ void Events::setCursor(CursorId cursorId) { */ void Events::setCursor(const Graphics::Surface &src) { CursorMan.replaceCursor(src.getPixels(), src.w, src.h, 0, 0, 0xff); + showCursor(); } /** |