diff options
Diffstat (limited to 'engines/titanic/true_talk/tt_hist.cpp')
-rw-r--r-- | engines/titanic/true_talk/tt_hist.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/titanic/true_talk/tt_hist.cpp b/engines/titanic/true_talk/tt_hist.cpp index e0f6cb88b6..fae9ae6286 100644 --- a/engines/titanic/true_talk/tt_hist.cpp +++ b/engines/titanic/true_talk/tt_hist.cpp @@ -25,8 +25,12 @@ namespace Titanic { -TThist::TThist(TTsentence *sentence) { - // TODO +TThist::TThist(TTsentence *sentence) : _status(0) { + _sentence = new TTsentence(sentence); +} + +TThist::~TThist() { + delete _sentence; } } // End of namespace Titanic |