diff options
author | Paul Gilbert | 2015-04-30 21:46:12 -1000 |
---|---|---|
committer | Paul Gilbert | 2015-04-30 21:46:12 -1000 |
commit | 9d99f1ebe726785beb0b3053b3cdc60a0fd64894 (patch) | |
tree | f0b48db58a51dde036057a3a8aa7a61556234afc | |
parent | d32eb9a70f5c44b16d1262f5d0d62a09d8e893d3 (diff) | |
download | scummvm-rg350-9d99f1ebe726785beb0b3053b3cdc60a0fd64894.tar.gz scummvm-rg350-9d99f1ebe726785beb0b3053b3cdc60a0fd64894.tar.bz2 scummvm-rg350-9d99f1ebe726785beb0b3053b3cdc60a0fd64894.zip |
SHERLOCK: Fix looking at items with multiple pages of description
-rw-r--r-- | engines/sherlock/talk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/talk.cpp b/engines/sherlock/talk.cpp index 9e75f4ecc8..da72125f72 100644 --- a/engines/sherlock/talk.cpp +++ b/engines/sherlock/talk.cpp @@ -1562,7 +1562,7 @@ void Talk::doScript(const Common::String &script) { // Certain different conditions require a wait if ((line == 4 && str[0] != SFX_COMMAND && str[0] != PAUSE && _speaker != -1) || - (line == 5 && str[0] != PAUSE && _speaker != -1) || + (line == 5 && str[0] != PAUSE && _speaker == -1) || endStr) { wait = 1; } |