From f4abf6b94adf53db7a053f7c342cc79f69a03262 Mon Sep 17 00:00:00 2001 From: Philipp Sehmisch Date: Sun, 18 Jan 2009 21:40:52 +0100 Subject: Fixed mapreader crash caused by unknown tile properties (That's why I said that I would like some praxis-oriented testing of the animation system before the release). --- src/resources/mapreader.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/resources/mapreader.cpp b/src/resources/mapreader.cpp index 4e116889..15fbf68a 100644 --- a/src/resources/mapreader.cpp +++ b/src/resources/mapreader.cpp @@ -531,8 +531,12 @@ Tileset *MapReader::readTileset(xmlNodePtr node, break; } } - map->addAnimation(tileGID, new TileAnimation(ani)); - logger->log("Animation length: %d", ani->getLength()); + + if (ani->getLength() > 0) + { + map->addAnimation(tileGID, new TileAnimation(ani)); + logger->log("Animation length: %d", ani->getLength()); + } } } } -- cgit v1.2.3-70-g09d2