From ec6b8d2016fcf094934f5b98a3ccf8cf93878fb0 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Mon, 1 Apr 2013 17:14:39 -0700 Subject: [PATCH] bring MAX_VOXELS_PER_SYSTEM back down to 250k --- interface/src/VoxelSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/VoxelSystem.cpp b/interface/src/VoxelSystem.cpp index 7ff162f427..0cb2b221dd 100644 --- a/interface/src/VoxelSystem.cpp +++ b/interface/src/VoxelSystem.cpp @@ -14,7 +14,7 @@ #include #include "VoxelSystem.h" -const int MAX_VOXELS_PER_SYSTEM = 1500000; //250000; +const int MAX_VOXELS_PER_SYSTEM = 250000; const int VERTICES_PER_VOXEL = 8; const int VERTEX_POINTS_PER_VOXEL = 3 * VERTICES_PER_VOXEL;