[c] Fixed memory leak in spTrackEntry_dispose, closes #770

This commit is contained in:
badlogic 2016-11-24 13:41:25 +01:00
parent a0484cc63d
commit a0f0e2ee1f

View File

@ -171,6 +171,7 @@ void _spEventQueue_drain (_spEventQueue* self) {
}
void _spAnimationState_disposeTrackEntry (spTrackEntry* entry) {
FREE(entry->timelinesFirst);
FREE(entry);
}