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:
helixhorned 2011-12-09 19:08:05 +00:00
parent 81b5ed0025
commit a7bce8814a

View file

@ -9186,7 +9186,7 @@ static void G_Cleanup(void)
}
if (label != NULL && label != (char *)&sprite[0]) Bfree(label);
if (labelcode != NULL && labelcode != (intptr_t *)&sector[0]) Bfree(labelcode);
if (labelcode != NULL && labelcode != (int32_t *)&sector[0]) Bfree(labelcode);
if (script != NULL) Bfree(script);
if (bitptr != NULL) Bfree(bitptr);