fixed ActionNode memoryleak.

This commit is contained in:
chengstory 2014-01-06 10:42:17 +08:00
parent 877c6dddf3
commit 76f96d0b41
1 changed files with 1 additions and 0 deletions

View File

@ -64,6 +64,7 @@ ActionNode::~ActionNode()
for (auto object : _frameArray)
{
object->clear();
CC_SAFE_DELETE(object);
}
_frameArray.clear();
}