aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStrangerke2013-06-06 00:24:35 +0200
committerStrangerke2013-06-06 00:24:35 +0200
commitb23c5d9522167ccb3e1c619d97792065070ce33d (patch)
treeb469d274f80adc31501d99564512a4021a88f91c
parentd12a3ac1296f1d56824f008a9f111cbab4ecaa05 (diff)
downloadscummvm-rg350-b23c5d9522167ccb3e1c619d97792065070ce33d.tar.gz
scummvm-rg350-b23c5d9522167ccb3e1c619d97792065070ce33d.tar.bz2
scummvm-rg350-b23c5d9522167ccb3e1c619d97792065070ce33d.zip
HOPKINS: Fix glitch occurring in the intro of the Linux Demo.
Thanks greencis for reporting it
-rw-r--r--engines/hopkins/hopkins.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hopkins/hopkins.cpp b/engines/hopkins/hopkins.cpp
index 25c213f8ec..407f264116 100644
--- a/engines/hopkins/hopkins.cpp
+++ b/engines/hopkins/hopkins.cpp
@@ -1642,8 +1642,8 @@ void HopkinsEngine::playIntro() {
_graphicsMan->setColorPercentage(253, 100, 100, 100);
_graphicsMan->setColorPercentage(251, 100, 100, 100);
_graphicsMan->setColorPercentage(254, 0, 0, 0);
- for (int i = 0; i <= 4; i++)
- _events->refreshScreenAndEvents();
+
+ _events->delay(500);
_globals->_eventMode = EVENTMODE_IGNORE;
_graphicsMan->fadeInLong();