From e240e34eb8ea54b31e65bfe950a2f01dd27620bb Mon Sep 17 00:00:00 2001 From: David Benepe Date: Sun, 11 Jul 2021 17:42:16 -0500 Subject: [PATCH] Fix NON_MATCHING issue --- src/unknown_060450.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unknown_060450.c b/src/unknown_060450.c index c554c834..203773f0 100644 --- a/src/unknown_060450.c +++ b/src/unknown_060450.c @@ -137,7 +137,7 @@ void free_object_model(ObjectModel *model) { if (model->animations != NULL) { // Small issue with this loop too. for (i = 0; i < model->numberOfAnimations; i++) { - free_from_memory_pool(model->animations[i].unk0 - 1); + free_from_memory_pool(model->animations[i].anim - 1); } free_from_memory_pool(model->animations); }