From 2db07a9d39cc9557d292908d84d3fc146635fd75 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Fri, 22 May 2015 19:55:45 +0200 Subject: SHERLOCK: Skip delay when intro is skipped --- engines/sherlock/scalpel/scalpel.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/engines/sherlock/scalpel/scalpel.cpp b/engines/sherlock/scalpel/scalpel.cpp index d55517cdc3..7875f22c47 100644 --- a/engines/sherlock/scalpel/scalpel.cpp +++ b/engines/sherlock/scalpel/scalpel.cpp @@ -611,8 +611,10 @@ bool ScalpelEngine::showOfficeCutscene() { } else finished = _events->delay(19000); - _events->clearEvents(); - finished = _events->delay(500); + if (finished) { + _events->clearEvents(); + finished = _events->delay(500); + } } if (finished) -- cgit v1.2.3