aboutsummaryrefslogtreecommitdiff
path: root/engines/cge2/hero.cpp
diff options
context:
space:
mode:
authoruruk2014-07-17 17:33:04 +0200
committeruruk2014-07-17 17:33:04 +0200
commit5963a540ef161e804f756d54970b2c7cb55fcc00 (patch)
treea07538858ad757acf2d11660453549a031c5a432 /engines/cge2/hero.cpp
parent49cea2d927c4a9a278827e6c4d0877386bb327d2 (diff)
downloadscummvm-rg350-5963a540ef161e804f756d54970b2c7cb55fcc00.tar.gz
scummvm-rg350-5963a540ef161e804f756d54970b2c7cb55fcc00.tar.bz2
scummvm-rg350-5963a540ef161e804f756d54970b2c7cb55fcc00.zip
CGE2: Add destructor to Hero().
Hopefully it will cut short the leak problems with _dim[].
Diffstat (limited to 'engines/cge2/hero.cpp')
-rw-r--r--engines/cge2/hero.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/cge2/hero.cpp b/engines/cge2/hero.cpp
index cebfe73295..c9b8dc5a13 100644
--- a/engines/cge2/hero.cpp
+++ b/engines/cge2/hero.cpp
@@ -40,6 +40,10 @@ Hero::Hero(CGE2Engine *vm)
}
}
+Hero::~Hero() {
+ contract();
+}
+
Sprite *Hero::expand() { // It's very similar to Sprite's expand, but doesn't bother with "labels" for example. TODO: Try to unify the two later!
if (_ext)
return this;