diff options
author | Torbjörn Andersson | 2015-06-08 21:45:24 +0200 |
---|---|---|
committer | Torbjörn Andersson | 2015-06-08 21:45:24 +0200 |
commit | 3b076459914d8f9cbc1db2e6def6c5ce952e3ffe (patch) | |
tree | e6d97a835431053288fa558bc4eff40d6279903f /engines/sherlock/scalpel | |
parent | 7d00e33c092fd3c4f6a5c8eb8e78a4e6419cb60e (diff) | |
download | scummvm-rg350-3b076459914d8f9cbc1db2e6def6c5ce952e3ffe.tar.gz scummvm-rg350-3b076459914d8f9cbc1db2e6def6c5ce952e3ffe.tar.bz2 scummvm-rg350-3b076459914d8f9cbc1db2e6def6c5ce952e3ffe.zip |
SHERLOCK: Don't skip rest of intro when skipping DOS EA logo
This is how the original works, as far as I can tell.
Diffstat (limited to 'engines/sherlock/scalpel')
-rw-r--r-- | engines/sherlock/scalpel/scalpel.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sherlock/scalpel/scalpel.cpp b/engines/sherlock/scalpel/scalpel.cpp index dab291990f..89232a7d52 100644 --- a/engines/sherlock/scalpel/scalpel.cpp +++ b/engines/sherlock/scalpel/scalpel.cpp @@ -252,8 +252,7 @@ void ScalpelEngine::showOpening() { return; } - if (!TsAGE::Logo::show(this)) - return; + TsAGE::Logo::show(this); if (!showCityCutscene()) return; if (!showAlleyCutscene()) |