diff options
Diffstat (limited to 'engines/sci/engine/kgraphics.cpp')
-rw-r--r-- | engines/sci/engine/kgraphics.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sci/engine/kgraphics.cpp b/engines/sci/engine/kgraphics.cpp index de02b96dca..4a0a8bc483 100644 --- a/engines/sci/engine/kgraphics.cpp +++ b/engines/sci/engine/kgraphics.cpp @@ -1000,6 +1000,8 @@ reg_t kShowMovie(EngineState *s, int argc, reg_t *argv) { if (argc == 1) return NULL_REG; + s->_gui->hideCursor(); + // The Windows and DOS versions use different video format as well // as a different argument set. if (argv[0].toUint16() == 0) { @@ -1040,6 +1042,8 @@ reg_t kShowMovie(EngineState *s, int argc, reg_t *argv) { if (playedVideo) s->_gui->syncWithFramebuffer(); + s->_gui->showCursor(); + return s->r_acc; } |