- Fix two signedness warnings in hw_sections.cpp.

This commit is contained in:
Mitchell Richters 2022-01-01 21:02:00 +11:00
parent 733b6a7367
commit f1530a051f

View file

@ -375,8 +375,8 @@ static void GroupData(TArray<loopcollect>& collect, TArray<sectionbuildsector>&
}
if (!collect[i].bugged) // only try to build a proper set of sections if the sector is not malformed. Otherwise just make a single one of everything.
{
int wind1count = 0;
int windnegcount = 0;
unsigned wind1count = 0;
unsigned windnegcount = 0;
int posplace = -1;
for (unsigned l = 0; l < sectloops.Size(); l++)
{