From 370defdc4a4556621f2ff292f83c80504f8ead15 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Thu, 17 Oct 2013 16:16:20 -0700 Subject: [PATCH] fixed comment --- libraries/voxels/src/VoxelNode.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libraries/voxels/src/VoxelNode.cpp b/libraries/voxels/src/VoxelNode.cpp index 9c5c81c19c..e850be7ad8 100644 --- a/libraries/voxels/src/VoxelNode.cpp +++ b/libraries/voxels/src/VoxelNode.cpp @@ -82,7 +82,7 @@ void VoxelNode::init(unsigned char * octalCode) { setVoxelSystem(NULL); _isDirty = true; _shouldRender = false; - _sourceUUIDKey = 0; // hardcoded to 0 for removal of 16 bit node ID + _sourceUUIDKey = 0; calculateAABox(); markWithChangedTime(); @@ -169,7 +169,6 @@ void VoxelNode::setVoxelSystem(VoxelSystem* voxelSystem) { } } - const uint16_t KEY_FOR_NULL = 0; uint16_t VoxelNode::_nextUUIDKey = KEY_FOR_NULL + 1; // start at 1, 0 is reserved for NULL std::map VoxelNode::_mapSourceUUIDsToKeys;