aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorJohannes Schickel2006-05-03 13:19:21 +0000
committerJohannes Schickel2006-05-03 13:19:21 +0000
commit1d6a1bf15717c4922e8e81078027569c75494dba (patch)
treef0a31462ac8264a14ea8f11b492d87dbdaa99689 /engines
parente4e7ba1d7a1f2a22ccf359adb0f9b248b9ea36f7 (diff)
downloadscummvm-rg350-1d6a1bf15717c4922e8e81078027569c75494dba.tar.gz
scummvm-rg350-1d6a1bf15717c4922e8e81078027569c75494dba.tar.bz2
scummvm-rg350-1d6a1bf15717c4922e8e81078027569c75494dba.zip
Fix for bug # 1480744 ("KYRA1: mouse cursor vanishes").
svn-id: r22307
Diffstat (limited to 'engines')
-rw-r--r--engines/kyra/screen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/screen.cpp b/engines/kyra/screen.cpp
index 29aa322a34..eed2ba15c5 100644
--- a/engines/kyra/screen.cpp
+++ b/engines/kyra/screen.cpp
@@ -1829,8 +1829,8 @@ void Screen::setMouseCursor(int x, int y, byte *shape) {
_system->showMouse(true);
free(cursor);
- return;
-
+ // makes sure that the cursor is drawn
+ updateScreen();
}
void Screen::copyScreenFromRect(int x, int y, int w, int h, uint8 *ptr) {