silence warning

This commit is contained in:
twinaphex 2016-02-23 11:13:21 +01:00
parent 176e28d7c8
commit ad69a6ed8b

View File

@ -451,8 +451,8 @@ void W_Init(void)
{ // CPhipps - new wadfiles array used
// open all the files, load headers, and count lumps
int i;
for (i=0; (size_t)i<numwadfiles; i++)
unsigned i;
for (i=0; i < numwadfiles; i++)
W_AddFile(&wadfiles[i]);
}