- fixed: The HashTags function considered sector and line #0 invalid.

This commit is contained in:
Christoph Oelckers 2015-04-23 21:27:36 +02:00
parent 45b006252a
commit 920a4fbf45
1 changed files with 2 additions and 2 deletions

View File

@ -163,7 +163,7 @@ void FTagManager::HashTags()
// Proceed from last to first so that lower targets appear first
for (int i = allTags.Size() - 1; i >= 0; i--)
{
if (allTags[i].target > 0) // only link valid entries
if (allTags[i].target >= 0) // only link valid entries
{
int hash = ((unsigned int)allTags[i].tag) % FTagManager::TAG_HASH_SIZE;
allTags[i].nexttag = TagHashFirst[hash];
@ -173,7 +173,7 @@ void FTagManager::HashTags()
for (int i = allIDs.Size() - 1; i >= 0; i--)
{
if (allIDs[i].target > 0) // only link valid entries
if (allIDs[i].target >= 0) // only link valid entries
{
int hash = ((unsigned int)allIDs[i].tag) % FTagManager::TAG_HASH_SIZE;
allIDs[i].nexttag = IDHashFirst[hash];