mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-13 05:11:01 +00:00
Fix -Waddress compiler warning
This commit is contained in:
parent
024a140e8d
commit
371c7c06aa
1 changed files with 1 additions and 1 deletions
|
@ -1862,7 +1862,7 @@ static int W_VerifyWAD(FILE *fp, lumpchecklist_t *checklist, boolean status)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
for (j = 0; j < NUMSPRITES; j++)
|
for (j = 0; j < NUMSPRITES; j++)
|
||||||
if (sprnames[j] && !strncmp(lumpinfo.name, sprnames[j], 4)) // Sprites
|
if (!strncmp(lumpinfo.name, sprnames[j], 4)) // Sprites
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (! W_VerifyName(lumpinfo.name, checklist, status))
|
if (! W_VerifyName(lumpinfo.name, checklist, status))
|
||||||
|
|
Loading…
Reference in a new issue