mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- Fix two signedness warnings in hw_sections.cpp
.
This commit is contained in:
parent
733b6a7367
commit
f1530a051f
1 changed files with 2 additions and 2 deletions
|
@ -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++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue