mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Fix a warning with 64-bit builds.
git-svn-id: https://svn.eduke32.com/eduke32@2157 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
81b5ed0025
commit
a7bce8814a
1 changed files with 1 additions and 1 deletions
|
@ -9186,7 +9186,7 @@ static void G_Cleanup(void)
|
|||
}
|
||||
|
||||
if (label != NULL && label != (char *)&sprite[0]) Bfree(label);
|
||||
if (labelcode != NULL && labelcode != (intptr_t *)§or[0]) Bfree(labelcode);
|
||||
if (labelcode != NULL && labelcode != (int32_t *)§or[0]) Bfree(labelcode);
|
||||
if (script != NULL) Bfree(script);
|
||||
if (bitptr != NULL) Bfree(bitptr);
|
||||
|
||||
|
|
Loading…
Reference in a new issue