Fixed memory leak when track is cleared while mixing from a previous animation.

This commit is contained in:
NathanSweet 2014-05-11 20:42:48 +02:00
parent 3370501317
commit cd7538d6a1

View File

@ -41,6 +41,7 @@ spTrackEntry* _spTrackEntry_create () {
}
void _spTrackEntry_dispose (spTrackEntry* entry) {
if (entry->previous) _spTrackEntry_dispose(entry->previous);
FREE(entry);
}