diff options
author | Sven Hesse | 2006-08-12 13:38:33 +0000 |
---|---|---|
committer | Sven Hesse | 2006-08-12 13:38:33 +0000 |
commit | a8c64ffb4a582fe3d80d1390445c7af5513feb9a (patch) | |
tree | 6f5d25d16688def553f3be5743ee7f9408a08133 /engines/gob | |
parent | 6ee511e68b2f66ebb2bb63a6492073a2ed120947 (diff) | |
download | scummvm-rg350-a8c64ffb4a582fe3d80d1390445c7af5513feb9a.tar.gz scummvm-rg350-a8c64ffb4a582fe3d80d1390445c7af5513feb9a.tar.bz2 scummvm-rg350-a8c64ffb4a582fe3d80d1390445c7af5513feb9a.zip |
Ooops, free the allocated _startTot/_startTot0, too...
svn-id: r23702
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/gob.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp index 6f5d3f9a54..ba8bc15468 100644 --- a/engines/gob/gob.cpp +++ b/engines/gob/gob.cpp @@ -193,6 +193,8 @@ GobEngine::~GobEngine() { delete _gtimer; delete _util; delete _music; + delete _startTot; + delete _startTot0; } void GobEngine::errorString(const char *buf1, char *buf2) { |