- fixed signedness warning.

This commit is contained in:
Christoph Oelckers 2015-07-15 09:08:15 +02:00
parent fe2e293d02
commit 585366f872

View file

@ -98,7 +98,7 @@ void FTagManager::AddSectorTag(int sector, int tag)
void FTagManager::RemoveSectorTags(int sect)
{
if (startForSector.Size() > sect)
if (startForSector.Size() > (unsigned int)sect)
{
int start = startForSector[sect];
if (start >= 0)