diff options
author | Paul Gilbert | 2015-05-02 14:34:49 -1000 |
---|---|---|
committer | Paul Gilbert | 2015-05-02 14:34:49 -1000 |
commit | eb4757d6e31171bde9b03fa44c20ab490639b5c0 (patch) | |
tree | af152482550f10990d1d3079621a11fdfcc10382 /engines | |
parent | dceff029220aff2efcb7a533d2403c90b5651870 (diff) | |
download | scummvm-rg350-eb4757d6e31171bde9b03fa44c20ab490639b5c0.tar.gz scummvm-rg350-eb4757d6e31171bde9b03fa44c20ab490639b5c0.tar.bz2 scummvm-rg350-eb4757d6e31171bde9b03fa44c20ab490639b5c0.zip |
SHERLOCK: Fix original game bug when testing powdery substance
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sherlock/talk.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/sherlock/talk.cpp b/engines/sherlock/talk.cpp index d05c09ab38..9af8a29c1e 100644 --- a/engines/sherlock/talk.cpp +++ b/engines/sherlock/talk.cpp @@ -433,6 +433,12 @@ void Talk::talkTo(const Common::String &filename) { // previous script can continue popStack(); + if (_vm->getGameID() == GType_SerratedScalpel && filename == "Tube59c") { + // WORKAROUND: Original game bug causes the results of testing the powdery substance + // to disappear too quickly. Introduce a delay to allow it to be properly displayed + ui._menuCounter = 30; + } + events.setCursor(ARROW); } |