More fixing/tidying of test, related to removing volume size limit.

This commit is contained in:
David Williams
2015-03-01 08:14:30 +01:00
parent bfc7dfdc1b
commit e7f41b7e0f
4 changed files with 59 additions and 66 deletions

View File

@ -41,7 +41,7 @@ namespace PolyVox
// Allocate the data
const uint32_t uNoOfVoxels = m_uSideLength * m_uSideLength * m_uSideLength;
m_tData = new VoxelType[uNoOfVoxels];
m_tData = new VoxelType[uNoOfVoxels];
// Pass the chunk to the Pager to give it a chance to initialise it with any data
if (m_pPager)