aboutsummaryrefslogtreecommitdiff
path: root/graphics/cursorman.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2006-05-25 23:20:35 +0000
committerTorbjörn Andersson2006-05-25 23:20:35 +0000
commit79819da301f606d799e0f3b8709c37c4cd685238 (patch)
tree6b2ff3852904509fad24acd2c4071fce56a0e32d /graphics/cursorman.cpp
parent017655682167667cee9d9d2e15e32c075af8ee2d (diff)
downloadscummvm-rg350-79819da301f606d799e0f3b8709c37c4cd685238.tar.gz
scummvm-rg350-79819da301f606d799e0f3b8709c37c4cd685238.tar.bz2
scummvm-rg350-79819da301f606d799e0f3b8709c37c4cd685238.zip
The GUI never asked for the cursor to be visible. I'm not sure why that used to
work before the cursor manager. Oh well, the launcher should have a visible cursor again, knock on wood. svn-id: r22641
Diffstat (limited to 'graphics/cursorman.cpp')
-rw-r--r--graphics/cursorman.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/graphics/cursorman.cpp b/graphics/cursorman.cpp
index c1b8e38a92..51d897052d 100644
--- a/graphics/cursorman.cpp
+++ b/graphics/cursorman.cpp
@@ -48,6 +48,8 @@ bool CursorManager::showMouse(bool visible) {
return false;
_cursorStack.top()->_visible = visible;
+
+ // Should work, even if there's just a dummy cursor on the stack.
return g_system->showMouse(visible);
}