Removed unneeded assert.

This commit is contained in:
David Williams 2015-04-13 21:17:19 +02:00
parent 5dd46c4bcf
commit 8757f1e53e

View File

@ -295,6 +295,7 @@ namespace PolyVox
if (entryPos.getX() == uChunkX && entryPos.getY() == uChunkY && entryPos.getZ() == uChunkZ) if (entryPos.getX() == uChunkX && entryPos.getY() == uChunkY && entryPos.getZ() == uChunkZ)
{ {
pChunk = m_arrayChunks[iIndex].get(); pChunk = m_arrayChunks[iIndex].get();
pChunk->m_uChunkLastAccessed = ++m_uTimestamper;
break; break;
} }
} }
@ -303,14 +304,6 @@ namespace PolyVox
iIndex %= uChunkArraySize; iIndex %= uChunkArraySize;
} while (iIndex != iPosisionHash); // Keep searching until we get back to our start position. } while (iIndex != iPosisionHash); // Keep searching until we get back to our start position.
// Check whether the chunk was found.
if (pChunk)
{
// The chunk was found so we can use it.
POLYVOX_ASSERT(pChunk, "Recent chunk list shold never contain a null pointer.");
pChunk->m_uChunkLastAccessed = ++m_uTimestamper;
}
// If we still haven't found the chunk then it's time to create a new one and page it in from disk. // If we still haven't found the chunk then it's time to create a new one and page it in from disk.
if (!pChunk) if (!pChunk)
{ {