diff options
author | Paul Gilbert | 2015-10-03 21:24:38 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-10-03 21:24:38 -0400 |
commit | 531292e04e7312f97f3e88e0934939a6bfb5018d (patch) | |
tree | ce102638544a8b669dd09e3a470c56c66b8a77b2 /engines/sherlock/scalpel | |
parent | 676f0e01d17d70415c3f92ffe17a6cb251b50425 (diff) | |
download | scummvm-rg350-531292e04e7312f97f3e88e0934939a6bfb5018d.tar.gz scummvm-rg350-531292e04e7312f97f3e88e0934939a6bfb5018d.tar.bz2 scummvm-rg350-531292e04e7312f97f3e88e0934939a6bfb5018d.zip |
SHERLOCK: SS: Fix freeze when using flower on flask
Diffstat (limited to 'engines/sherlock/scalpel')
-rw-r--r-- | engines/sherlock/scalpel/scalpel_talk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/scalpel/scalpel_talk.h b/engines/sherlock/scalpel/scalpel_talk.h index 4d54273f4a..a9a3753b64 100644 --- a/engines/sherlock/scalpel/scalpel_talk.h +++ b/engines/sherlock/scalpel/scalpel_talk.h @@ -145,7 +145,7 @@ public: /** * Returns true if the script stack is empty */ - virtual bool isSequencesEmpty() const { return _scriptStack.empty(); } + virtual bool isSequencesEmpty() const { return _sequenceStack.empty(); } /** * Clears the stack of pending object sequences associated with speakers in the scene |