diff options
author | Travis Howell | 2002-11-16 15:51:49 +0000 |
---|---|---|
committer | Travis Howell | 2002-11-16 15:51:49 +0000 |
commit | 16d154abee1f772bef28737e61ba41b5c9773876 (patch) | |
tree | 760a74dbdc0551aaa0808b12bb3a8702b1894a62 /simon | |
parent | ee5590808e65c05d75a15899700dc23d37586114 (diff) | |
download | scummvm-rg350-16d154abee1f772bef28737e61ba41b5c9773876.tar.gz scummvm-rg350-16d154abee1f772bef28737e61ba41b5c9773876.tar.bz2 scummvm-rg350-16d154abee1f772bef28737e61ba41b5c9773876.zip |
Don't show cursor during cut scenes
svn-id: r5583
Diffstat (limited to 'simon')
-rw-r--r-- | simon/simon.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index 9f3a9632a1..f290c8882b 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -2515,9 +2515,11 @@ void SimonState::o_wait_for_vga(uint a) _vga_wait_for = a; _timer_1 = 0; _exit_cutscene = false; + _system->show_mouse(false); while (_vga_wait_for != 0) { if (_exit_cutscene) { if (vc_get_bit(9)) { + _system->show_mouse(true); startSubroutine170(); break; } |