mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix the wrong freeing function call being used in Patch_FreeData
This commit is contained in:
parent
53a5e75855
commit
bf9a8d9f3b
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…
Add table
Reference in a new issue