aboutsummaryrefslogtreecommitdiff
path: root/gob/util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gob/util.cpp')
-rw-r--r--gob/util.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/gob/util.cpp b/gob/util.cpp
index d3580baa94..5c953778fa 100644
--- a/gob/util.cpp
+++ b/gob/util.cpp
@@ -179,8 +179,9 @@ void util_longDelay(uint16 msecs)
{
uint32 time = g_system->getMillis() + msecs;
do {
+ vid_waitRetrace(videoMode);
util_processInput();
- util_delay(10);
+ util_delay(25);
} while (g_system->getMillis() < time);
}