Small changes, hoping to help the Linux version compile.

This commit is contained in:
Daviw Williams
2013-06-12 16:52:17 +02:00
parent 0a4ffc2351
commit 62f273bd74
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ bool testVoxelValidator(const VolumeType* volData, const Vector3DInt32& v3dPos)
return false;
}
typename VolumeType::VoxelType voxel = volData->getVoxel<WrapModes::None>(v3dPos);
typename VolumeType::VoxelType voxel = volData->getVoxel(v3dPos, WrapModes::None); // FIXME use templatised version of getVoxel(), but watch out for Linux compile issues.
if(voxel != 0)
{
return false;