mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- fixed signedness warning.
This commit is contained in:
parent
fe2e293d02
commit
585366f872
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue