From 66f0813981825ab29c8cc238319a910916fd8481 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Wed, 10 Jul 2013 17:39:27 -0700 Subject: [PATCH] removed level form recursion calls --- 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 a2d9d80292..9571e4adf5 100644 --- a/voxel-edit/src/main.cpp +++ b/voxel-edit/src/main.cpp @@ -13,7 +13,7 @@ VoxelTree myTree; int _nodeCount=0; -bool countVoxelsOperation(VoxelNode* node, int level, void* extraData) { +bool countVoxelsOperation(VoxelNode* node, void* extraData) { if (node->isColored()){ _nodeCount++; }