aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/true_talk/tt_parser.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-05-17 17:54:59 -0400
committerPaul Gilbert2016-07-15 19:12:48 -0400
commit5da19b674d3b9d24517a266e369728f3b5c2957a (patch)
tree3338ac43d34ea6d6c1236d31846b2d468cee0120 /engines/titanic/true_talk/tt_parser.h
parentaead3a0083edd7ac5e1f748f422ee25695676a4a (diff)
downloadscummvm-rg350-5da19b674d3b9d24517a266e369728f3b5c2957a.tar.gz
scummvm-rg350-5da19b674d3b9d24517a266e369728f3b5c2957a.tar.bz2
scummvm-rg350-5da19b674d3b9d24517a266e369728f3b5c2957a.zip
TITANIC: Changed TTinput to TTsentence to match original
Diffstat (limited to 'engines/titanic/true_talk/tt_parser.h')
-rw-r--r--engines/titanic/true_talk/tt_parser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/titanic/true_talk/tt_parser.h b/engines/titanic/true_talk/tt_parser.h
index 4dbc4d4c48..da63336783 100644
--- a/engines/titanic/true_talk/tt_parser.h
+++ b/engines/titanic/true_talk/tt_parser.h
@@ -23,7 +23,7 @@
#ifndef TITANIC_TT_PARSER_H
#define TITANIC_TT_PARSER_H
-#include "titanic/true_talk/tt_input.h"
+#include "titanic/true_talk/tt_sentence.h"
#include "titanic/true_talk/tt_string.h"
namespace Titanic {
@@ -60,7 +60,7 @@ private:
* Normalizes a passed input, taking care of things like removing extra
* spaces and lowercasing everything
*/
- int normalize(TTinput *input);
+ int normalize(TTsentence *sentence);
/**
* Submethod called by normalize to handle expanding contacted word pairs
@@ -115,7 +115,7 @@ private:
public:
CScriptHandler *_owner;
int _field4;
- TTinput *_input;
+ TTsentence *_sentence;
int _fieldC;
int _field10;
int _field14;
@@ -127,7 +127,7 @@ public:
* Preprocesses the passed input text, to handle things like lowercasing
* all the words, and replcaing common slang with their full equivalents
*/
- int preprocess(TTinput *input);
+ int preprocess(TTsentence *sentence);
};
} // End of namespace Titanic