Merge pull request #4897 from chengstory/#3585

fixed actionNode Memory Leak.
This commit is contained in:
James Chen 2014-01-05 18:48:02 -08:00
commit 68f76678f9
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();
}