aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/talk.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-05-21 20:07:54 -0400
committerPaul Gilbert2015-05-21 20:07:54 -0400
commit5c30a2c5772049702e1c65d10ae32dec8e6f1cdc (patch)
tree1fc16720436d8fd9fd182e4ebdc3a17cb177e062 /engines/sherlock/talk.h
parent87fe6a14a069dd5cd02276c2e8e85d25117680d2 (diff)
downloadscummvm-rg350-5c30a2c5772049702e1c65d10ae32dec8e6f1cdc.tar.gz
scummvm-rg350-5c30a2c5772049702e1c65d10ae32dec8e6f1cdc.tar.bz2
scummvm-rg350-5c30a2c5772049702e1c65d10ae32dec8e6f1cdc.zip
SHERLOCK: Clean up initialization and handling of NPC data
Diffstat (limited to 'engines/sherlock/talk.h')
-rw-r--r--engines/sherlock/talk.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/engines/sherlock/talk.h b/engines/sherlock/talk.h
index 71f093f66a..d26259dbfd 100644
--- a/engines/sherlock/talk.h
+++ b/engines/sherlock/talk.h
@@ -128,9 +128,6 @@ class UserInterface;
class Talk {
friend class UserInterface;
private:
- Common::Array<TalkSequences> STILL_SEQUENCES;
- Common::Array<TalkSequences> TALK_SEQUENCES;
-private:
SherlockEngine *_vm;
Common::Stack<SequenceEntry> _savedSequences;
Common::Stack<SequenceEntry> _sequenceStack;
@@ -188,11 +185,8 @@ public:
Talk(SherlockEngine *vm);
/**
- * Sets talk sequences
+ * Return a given talk statement
*/
- void setSequences(const byte *talkSequences, const byte *stillSequences,
- int maxPeople);
-
Statement &operator[](int idx) { return _statements[idx]; }
/**