aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/true_talk/tt_quotes.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-07-31 13:06:51 -0400
committerPaul Gilbert2016-07-31 13:06:51 -0400
commite2b00938c7488af62521e1ad4e62566fa4077af0 (patch)
treefd3c73410e787aceec034c0bd3b65ad263ff02b7 /engines/titanic/true_talk/tt_quotes.h
parent8a2491c51b1b7d27382030f3cb9d58c5b56265f0 (diff)
downloadscummvm-rg350-e2b00938c7488af62521e1ad4e62566fa4077af0.tar.gz
scummvm-rg350-e2b00938c7488af62521e1ad4e62566fa4077af0.tar.bz2
scummvm-rg350-e2b00938c7488af62521e1ad4e62566fa4077af0.zip
TITANIC: Added DeskbotScript preprocess
Diffstat (limited to 'engines/titanic/true_talk/tt_quotes.h')
-rw-r--r--engines/titanic/true_talk/tt_quotes.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/titanic/true_talk/tt_quotes.h b/engines/titanic/true_talk/tt_quotes.h
index c6627dcc34..5958c9ebcf 100644
--- a/engines/titanic/true_talk/tt_quotes.h
+++ b/engines/titanic/true_talk/tt_quotes.h
@@ -53,7 +53,9 @@ private:
* Test whether a substring contains one of the quotes,
* and if so, returns the 4-character tag Id associated with it
*/
- int find(const char *startP, const char *endP);
+ int find(const char *startP, const char *endP) const;
+public:
+ bool _loaded;
public:
TTquotes();
~TTquotes();
@@ -67,7 +69,7 @@ public:
* Test whether a passed string contains one of the quotes,
* and if so, returns the 4-character tag Id associated with it
*/
- int find(const char *str);
+ int find(const char *str) const;
};
} // End of namespace Titanic