aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/events.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/lure/events.cpp')
-rw-r--r--engines/lure/events.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/lure/events.cpp b/engines/lure/events.cpp
index c637d4d7f7..f56a57ca34 100644
--- a/engines/lure/events.cpp
+++ b/engines/lure/events.cpp
@@ -141,7 +141,8 @@ void Mouse::waitForRelease() {
LureEngine &engine = LureEngine::getReference();
do {
- while (e.pollEvent() && !engine.shouldQuit()) ;
+ while (e.pollEvent() && !engine.shouldQuit())
+ ;
g_system->delayMillis(20);
} while (!engine.shouldQuit() && (lButton() || rButton() || mButton()));
}