From d39367410082a763b18faf868aad9dddd8e72ca5 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Sun, 27 Dec 2015 15:20:10 +0100 Subject: LAB: Allow to skip more efficiently the intro while the 2nd screen is displayed --- engines/lab/intro.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'engines/lab') diff --git a/engines/lab/intro.cpp b/engines/lab/intro.cpp index 46a20a502b..f258acc880 100644 --- a/engines/lab/intro.cpp +++ b/engines/lab/intro.cpp @@ -236,8 +236,8 @@ void Intro::play() { nReadPict("EA3"); } else if (_vm->getPlatform() == Common::kPlatformWindows) { nReadPict("WYRMKEEP"); - // Wait 4 seconds - for (int i = 0; i < 4 * 1000 / 10; i++) { + // Wait 4 seconds (400 x 10ms) + for (int i = 0; i < 400; i++) { introEatMessages(); if (_quitIntro) break; @@ -271,6 +271,7 @@ void Intro::play() { _vm->_graphics->fade(true); for (int times = 0; times < 150; times++) { + introEatMessages(); if (_quitIntro) break; -- cgit v1.2.3