From 996314012e773abc60fcd9db587af9fd09c028d2 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Sat, 10 Aug 2013 11:31:48 -0700 Subject: [PATCH] fix small build issue in voxel-edit --- voxel-edit/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voxel-edit/src/main.cpp b/voxel-edit/src/main.cpp index 36913a2d6c..990f0fa5b8 100644 --- a/voxel-edit/src/main.cpp +++ b/voxel-edit/src/main.cpp @@ -101,7 +101,7 @@ int main(int argc, const char * argv[]) // jurisdiction of the server // This hack assumes the end nodes for demo dinner since it only guarantees // nodes in the 8 child voxels of the main root voxel - const float verySmall = verySmall; + const float verySmall = 0.015625; endNodeTree.createVoxel(0.0, 0.0, 0.0, verySmall, 1, 1, 1, true); endNodeTree.createVoxel(1.0, 0.0, 0.0, verySmall, 1, 1, 1, true); endNodeTree.createVoxel(0.0, 1.0, 0.0, verySmall, 1, 1, 1, true);