diff options
author | Paul Gilbert | 2015-05-03 18:19:12 -1000 |
---|---|---|
committer | Paul Gilbert | 2015-05-03 18:19:12 -1000 |
commit | 0554e893cef70dc7fd4bbdad8227d17b14d076d1 (patch) | |
tree | 075aab71a732ed5d0041a78d1701a9e10469d3fb /engines | |
parent | 32d46dc00ab82bebc46f57dba8eb1be7e226d6f2 (diff) | |
download | scummvm-rg350-0554e893cef70dc7fd4bbdad8227d17b14d076d1.tar.gz scummvm-rg350-0554e893cef70dc7fd4bbdad8227d17b14d076d1.tar.bz2 scummvm-rg350-0554e893cef70dc7fd4bbdad8227d17b14d076d1.zip |
SHERLOCK: Fix picking up knife in taxidermy
Diffstat (limited to 'engines')
-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 953f884625..11385ca978 100644 --- a/engines/sherlock/talk.cpp +++ b/engines/sherlock/talk.cpp @@ -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 |