From e39dcf5733249040ec180d1072d5e62cae63fdfc Mon Sep 17 00:00:00 2001 From: culacant Date: Tue, 6 Aug 2019 14:34:45 +0200 Subject: [PATCH] use raylib free --- examples/models/models_animation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/models/models_animation.c b/examples/models/models_animation.c index c9b282527..764ec121b 100644 --- a/examples/models/models_animation.c +++ b/examples/models/models_animation.c @@ -99,7 +99,7 @@ int main(void) //-------------------------------------------------------------------------------------- // Unload model animations data for (int i = 0; i < animsCount; i++) UnloadModelAnimation(anims[i]); - free(anims); + RL_FREE(anims); UnloadModel(model); // Unload model