summaryrefslogtreecommitdiff
path: root/src/simpleanimation.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-02-11 00:01:36 +0100
committerIra Rice <irarice@gmail.com>2009-02-10 20:19:45 -0700
commitd99b00a149e7828adb3c4651069483e51b0b458b (patch)
tree33f07f9d18dd006d10b14ff2dffbcbe337809d0c /src/simpleanimation.cpp
parentd268447e18c6e3edd80658f8f8d4317740c33af9 (diff)
downloadmana-client-d99b00a149e7828adb3c4651069483e51b0b458b.tar.gz
mana-client-d99b00a149e7828adb3c4651069483e51b0b458b.tar.bz2
mana-client-d99b00a149e7828adb3c4651069483e51b0b458b.tar.xz
mana-client-d99b00a149e7828adb3c4651069483e51b0b458b.zip
Removed many pointless comparisons with NULL
Sometimes it's nice for clarity, but most of the time this is just clutter. C++ != Java. :)
Diffstat (limited to 'src/simpleanimation.cpp')
-rw-r--r--src/simpleanimation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simpleanimation.cpp b/src/simpleanimation.cpp
index 09e8e0d3..ab50674b 100644
--- a/src/simpleanimation.cpp
+++ b/src/simpleanimation.cpp
@@ -51,7 +51,7 @@ SimpleAnimation::SimpleAnimation(xmlNodePtr animationNode):
// Get animation frames
for ( xmlNodePtr frameNode = animationNode->xmlChildrenNode;
- frameNode != NULL;
+ frameNode;
frameNode = frameNode->next)
{
int delay = XML::getProperty(frameNode, "delay", 0);