diff options
Diffstat (limited to 'engines/glk/events.cpp')
-rw-r--r-- | engines/glk/events.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/glk/events.cpp b/engines/glk/events.cpp index 4d6f19f510..6589b512f8 100644 --- a/engines/glk/events.cpp +++ b/engines/glk/events.cpp @@ -393,6 +393,10 @@ void Events::setCursor(CursorId cursorId) { } } +void Events::showMouseCursor(bool visible) { + CursorMan.showMouse(visible); +} + void Events::setTimerInterval(uint milli) { _timerMilli = milli; _timerTimeExpiry = g_system->getMillis() + milli; |