Skip to content

Commit

Permalink
SHERLOCK: Fix picking up pail at docks
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed May 1, 2015
1 parent 329f6d7 commit d57cb94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/sherlock/talk.cpp
Expand Up @@ -1403,7 +1403,7 @@ void Talk::doScript(const Common::String &script) {
++str;
for (int idx = 0; idx < (str[0] & 127); ++idx)
tempString += str[idx + 1];
str += str[0];
str += str[0] & 127;

// Set comparison state according to if we want to hide or unhide
bool state = ((byte)str[0] >= 128);
Expand Down

0 comments on commit d57cb94

Please sign in to comment.