summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/map.cpp5
-rw-r--r--src/map.h1
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()
{
diff --git a/src/map.h b/src/map.h
index 1423565f..3beab350 100644
--- a/src/map.h
+++ b/src/map.h
@@ -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)); }