Skip to content

Commit

Permalink
SHERLOCK: Fix picking up knife in taxidermy
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed May 4, 2015
1 parent 32d46dc commit 0554e89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/sherlock/talk.cpp
Expand Up @@ -184,7 +184,7 @@ void Talk::talkTo(const Common::String &filename) {
if (_savedSequences.size() > 0) {
for (uint idx = 0; idx < _savedSequences.size(); ++idx) {
SequenceEntry &ss = _savedSequences[idx];
for (uint idx2 = 0; idx2 < _savedSequences.size(); ++idx2)
for (uint idx2 = 0; idx2 < ss._sequences.size(); ++idx2)
scene._bgShapes[ss._objNum]._sequences[idx2] = ss._sequences[idx2];

// Reset the object's frame to the beginning of the sequence
Expand Down

0 comments on commit 0554e89

Please sign in to comment.