aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2002-11-16 15:51:49 +0000
committerTravis Howell2002-11-16 15:51:49 +0000
commit16d154abee1f772bef28737e61ba41b5c9773876 (patch)
tree760a74dbdc0551aaa0808b12bb3a8702b1894a62 /simon
parentee5590808e65c05d75a15899700dc23d37586114 (diff)
downloadscummvm-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.cpp2
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;
}