diff options
author | Jordi Vilalta Prat | 2008-12-23 09:55:07 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2008-12-23 09:55:07 +0000 |
commit | e04b49df62ca5847b45ae1342e25ea84ddf7b043 (patch) | |
tree | 301ef763f332d78310463a85843fc8bb9ae4dbea /engines | |
parent | 1162e9a0358be1c6b236cc0517b2c32f86cfb402 (diff) | |
download | scummvm-rg350-e04b49df62ca5847b45ae1342e25ea84ddf7b043.tar.gz scummvm-rg350-e04b49df62ca5847b45ae1342e25ea84ddf7b043.tar.bz2 scummvm-rg350-e04b49df62ca5847b45ae1342e25ea84ddf7b043.zip |
T7G: Fix the stuck mouse cursor
svn-id: r35494
Diffstat (limited to 'engines')
-rw-r--r-- | engines/groovie/script.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/groovie/script.cpp b/engines/groovie/script.cpp index 676edb021c..ff70ce2026 100644 --- a/engines/groovie/script.cpp +++ b/engines/groovie/script.cpp @@ -652,6 +652,10 @@ void Script::o_inputloopend() { // Exit the input loop _inputLoopAddress = 0; _vm->_system->showMouse(false); + + // Force immediate hiding of the mouse cursor (required when the next + // video just contains audio) + _vm->_graphicsMan->change(); } // Nothing to do |