Fixed the actual number of nodes used

This commit is contained in:
Guilhem Lavaux 2011-02-24 15:19:14 -06:00
parent bb5745e34b
commit bfc2cf3bcd

View file

@ -201,7 +201,7 @@ public:
nodes[i].parent = rootNode;
rootNode->children.push_back(&nodes[i]);
}
activeNodes = inserted;
activeNodes = inserted+1;
}
~VoidTree()