mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-21 18:32:08 +00:00
Fix the wrong freeing function call being used in Patch_FreeData
This commit is contained in:
parent
63e471d902
commit
fccbc00cac
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ static void Patch_FreeData(patch_t *patch)
|
|||
for (i = 0; i < 2; i++)
|
||||
{
|
||||
if (patch->flats[i])
|
||||
Patch_Free(patch->flats[i]);
|
||||
Z_Free(patch->flats[i]);
|
||||
}
|
||||
|
||||
#ifdef ROTSPRITE
|
||||
|
|
Loading…
Reference in a new issue