Fixing crash when loaded module, using proper function liberate them.

This commit is contained in:
David Carlier 2019-05-25 10:31:23 +01:00 committed by Rachael Alexanderson
parent 7957686fee
commit c9c895b420

View file

@ -73,7 +73,7 @@ FAnimDef *FTextureManager::AddAnim (FAnimDef *anim)
if (mAnimations[i]->BasePic == anim->BasePic) if (mAnimations[i]->BasePic == anim->BasePic)
{ {
// Found one! // Found one!
free (mAnimations[i]); M_Free (mAnimations[i]);
mAnimations[i] = anim; mAnimations[i] = anim;
return anim; return anim;
} }