1
0
forked from mirrors/0ad

Fixes typo in pool allocator stats, based on patch from Echelon9. Fixes #1061.

This was SVN commit r10799.
This commit is contained in:
historic_bruno
2011-12-23 03:54:36 +00:00
parent d4fea62800
commit 587487811b
+1 -1
View File
@@ -539,7 +539,7 @@ public:
m_totalDeallocatedBlocks++;
m_totalDeallocatedBytes += size;
ENSURE(m_totalDeallocatedBlocks <= m_totalAllocatedBlocks);
ENSURE(m_totalDeallocatedBytes <= m_totalDeallocatedBytes);
ENSURE(m_totalDeallocatedBytes <= m_totalAllocatedBytes);
ENSURE(m_currentExtantBlocks != 0);
ENSURE(m_currentExtantBytes >= size);