Skip to content

Commit

Permalink
SHERLOCK: RT: Fix resetting sequence on objects with hasAborts
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Aug 20, 2015
1 parent 3ec6dcc commit 47a04b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/sherlock/tattoo/tattoo_talk.cpp
Expand Up @@ -934,7 +934,7 @@ void TattooTalk::pullSequence(int slot) {
Object &o = *seq._obj;

// See if we're not supposed to restore it until an Allow Talk Interrupt
if (seq._obj->hasAborts()) {
if (slot == -1 && seq._obj->hasAborts()) {
seq._obj->_gotoSeq = -1;
seq._obj->_restoreSlot = idx;
} else {
Expand Down

0 comments on commit 47a04b0

Please sign in to comment.