Core/Maps: cosmetic correction on comment (#24096)

This commit is contained in:
Kelno
2020-01-22 21:34:24 +01:00
committed by ccrs
parent 01584cb0b9
commit d0efd76c92

View File

@@ -341,7 +341,7 @@ uint32 MapManager::GenerateInstanceId()
ASSERT(newInstanceId < _freeInstanceIds.size());
_freeInstanceIds[newInstanceId] = false;
// Find the lowest available id starting from the current NextInstanceId (which should be the lowest according to the logic in FreeInstanceId()
// Find the lowest available id starting from the current NextInstanceId (which should be the lowest according to the logic in FreeInstanceId())
size_t nextFreedId = _freeInstanceIds.find_next(_nextInstanceId++);
if (nextFreedId == InstanceIds::npos)
{