summaryrefslogtreecommitdiff
path: root/src/simpleanimation.cpp
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-01-29 21:53:25 +0100
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-01-30 12:32:55 +0100
commit2d97a4b9d7c6d84cb8b22302cd22f805a4ab76b0 (patch)
tree77453315596574d874821f78075ffabb6731e76c /src/simpleanimation.cpp
parent87470d984cc8f6fe12a354aec7bf93ee4fcb95eb (diff)
downloadmana-2d97a4b9d7c6d84cb8b22302cd22f805a4ab76b0.tar.gz
mana-2d97a4b9d7c6d84cb8b22302cd22f805a4ab76b0.tar.bz2
mana-2d97a4b9d7c6d84cb8b22302cd22f805a4ab76b0.tar.xz
mana-2d97a4b9d7c6d84cb8b22302cd22f805a4ab76b0.zip
Apply readability-delete-null-pointer fixits
These checks are unnecessary as deleting a null pointer has no effect.
Diffstat (limited to 'src/simpleanimation.cpp')
-rw-r--r--src/simpleanimation.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/simpleanimation.cpp b/src/simpleanimation.cpp
index 5ab7cf63..72045ca9 100644
--- a/src/simpleanimation.cpp
+++ b/src/simpleanimation.cpp
@@ -53,8 +53,7 @@ SimpleAnimation::SimpleAnimation(xmlNodePtr animationNode,
SimpleAnimation::~SimpleAnimation()
{
- if (mAnimation)
- delete mAnimation;
+ delete mAnimation;
}
bool SimpleAnimation::draw(Graphics *graphics, int posX, int posY) const