Fix legitimate signed/unsigned comparison warnings.

This commit is contained in:
Mari the Deer 2022-08-05 21:30:11 +02:00
commit 91dc82ca00
4 changed files with 14 additions and 14 deletions

View file

@ -11,7 +11,7 @@ class swwm_PolyobjectHandlePostProcessor: LevelPostProcessor
return;
// Look for Polyobject StartSpots and create a handle for each
for (int i = 0; i < GetThingCount(); i++)
for (uint i = 0; i < GetThingCount(); i++)
{
// Ignore every thing that isn't a Polyobject StartSpot
int ednum = GetThingEdNum(i);