mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-05 20:40:30 +00:00
- fixed: Trying to remove sector tags for line-less sectors crashed when there were no sector tags at all in a map.
This commit is contained in:
parent
bfc10f4c5e
commit
96fa3b124e
1 changed files with 8 additions and 5 deletions
|
@ -97,6 +97,8 @@ void FTagManager::AddSectorTag(int sector, int tag)
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
void FTagManager::RemoveSectorTags(int sect)
|
void FTagManager::RemoveSectorTags(int sect)
|
||||||
|
{
|
||||||
|
if (startForSector.Size() > 0)
|
||||||
{
|
{
|
||||||
int start = startForSector[sect];
|
int start = startForSector[sect];
|
||||||
if (start >= 0)
|
if (start >= 0)
|
||||||
|
@ -108,6 +110,7 @@ void FTagManager::RemoveSectorTags(int sect)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue