aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTorbjörn Andersson2007-04-01 13:38:03 +0000
committerTorbjörn Andersson2007-04-01 13:38:03 +0000
commit9339d2a54e273786ea6346bf4925076b10a50e56 (patch)
treee31893bd6f737dfbcfdee530a27d106b7fde64f2 /engines
parentcfa746830fac583b1eea08f969bb106dff6ca519 (diff)
downloadscummvm-rg350-9339d2a54e273786ea6346bf4925076b10a50e56.tar.gz
scummvm-rg350-9339d2a54e273786ea6346bf4925076b10a50e56.tar.bz2
scummvm-rg350-9339d2a54e273786ea6346bf4925076b10a50e56.zip
We still track the mouse position while waiting for an answer to the "Do you
want to quit?" question, so it makes sense to me to keep drawing the cursor. Even if the original didn't. svn-id: r26346
Diffstat (limited to 'engines')
-rw-r--r--engines/touche/ui.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/touche/ui.cpp b/engines/touche/ui.cpp
index a679b83ac7..ac5cee7f6e 100644
--- a/engines/touche/ui.cpp
+++ b/engines/touche/ui.cpp
@@ -563,7 +563,8 @@ int ToucheEngine::displayQuitDialog() {
break;
}
}
- _system->delayMillis(50);
+ _system->delayMillis(10);
+ _system->updateScreen();
}
clearStatusString();
return ret;