aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/macventure.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/macventure/macventure.cpp')
-rw-r--r--engines/macventure/macventure.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/macventure/macventure.cpp b/engines/macventure/macventure.cpp
index 2054c5eab6..da192628fe 100644
--- a/engines/macventure/macventure.cpp
+++ b/engines/macventure/macventure.cpp
@@ -59,6 +59,9 @@ MacVentureEngine::~MacVentureEngine() {
if (_filenames)
delete _filenames;
+ if (_decodingArticles)
+ delete _decodingArticles;
+
if (_textHuffman)
delete _textHuffman;
}
@@ -84,6 +87,7 @@ Common::Error MacVentureEngine::run() {
_oldTextEncoding = !loadTextHuffman();
_filenames = new StringTable(this, _resourceManager, kFilenamesStringTableID);
+ _decodingArticles = new StringTable(this, _resourceManager, kCommonArticlesStringTableID);
// Big class instantiation
_gui = new Gui(this, _resourceManager);