diff options
-rw-r--r-- | src/map.cpp | 5 | ||||
-rw-r--r-- | src/map.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/map.cpp b/src/map.cpp index da097504..b5e815f3 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -68,11 +68,6 @@ TileAnimation::TileAnimation(Animation *ani): { } -TileAnimation::~TileAnimation() -{ -// TODO: fix or remove this -// delete mLastImage; -} void TileAnimation::update() { @@ -72,7 +72,6 @@ class TileAnimation { public: TileAnimation(Animation *ani); - ~TileAnimation(); void update(); void addAffectedTile(MapLayer *layer, int index) { mAffected.push_back(std::make_pair(layer, index)); } |