aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/cine.cpp
diff options
context:
space:
mode:
authorKari Salminen2008-08-11 22:26:25 +0000
committerKari Salminen2008-08-11 22:26:25 +0000
commit36e0d2eab8bc920d337d8e6f1436e057049ffac6 (patch)
treefbb0d3c6b13065fa224db18f9d07af0d17d6558c /engines/cine/cine.cpp
parent8aaba9d38e8a0c2259cf7617bb1b07c725a49b0b (diff)
downloadscummvm-rg350-36e0d2eab8bc920d337d8e6f1436e057049ffac6.tar.gz
scummvm-rg350-36e0d2eab8bc920d337d8e6f1436e057049ffac6.tar.bz2
scummvm-rg350-36e0d2eab8bc920d337d8e6f1436e057049ffac6.zip
Moved fontParamTable inside TextHandler struct and made it a constant size as that's what it is (No need for using malloc & free anymore). Previously we would've tried to free an array that wasn't heap-allocated in freePoldatDat (Freeing fontParamTable_standard or fontParamTable_alt), that's fixed.
svn-id: r33786
Diffstat (limited to 'engines/cine/cine.cpp')
-rw-r--r--engines/cine/cine.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/cine/cine.cpp b/engines/cine/cine.cpp
index 5e0506c286..9eb751835e 100644
--- a/engines/cine/cine.cpp
+++ b/engines/cine/cine.cpp
@@ -69,7 +69,6 @@ CineEngine::CineEngine(OSystem *syst, const CINEGameDescription *gameDesc) : Eng
CineEngine::~CineEngine() {
if (g_cine->getGameType() == Cine::GType_OS) {
- freePoldatDat();
freeErrmessDat();
}
Common::clearAllSpecialDebugLevels();