Some tweaks

This commit is contained in:
Ray
2023-09-02 12:54:36 +02:00
parent 0f447f1fb6
commit 6e18d96e7a
3 changed files with 4 additions and 4 deletions

View File

@@ -2099,9 +2099,9 @@ void UpdateModelAnimation(Model model, ModelAnimation anim, int frame)
}
// Unload animation array data
void UnloadModelAnimations(ModelAnimation *animations, unsigned int count)
void UnloadModelAnimations(ModelAnimation *animations, int animCount)
{
for (unsigned int i = 0; i < count; i++) UnloadModelAnimation(animations[i]);
for (int i = 0; i < animCount; i++) UnloadModelAnimation(animations[i]);
RL_FREE(animations);
}