Remove unused GUI properties

This commit is contained in:
Erik Broberg
2016-06-21 18:28:29 -04:00
parent 751a157f86
commit 14ea82d929
4 changed files with 1 additions and 12 deletions

View File

@@ -155,7 +155,7 @@ void ChunkNode::renderDepthFirst(const RenderData& data) {
void ChunkNode::split(int depth) {
if (depth > 0 && isLeaf()) {
for (size_t i = 0; i < 4; i++) {
Chunk chunk(_chunk.owner(), _chunk.index().child((Quad)i), _chunk.owner()->initChunkVisible);
Chunk chunk(_chunk.owner(), _chunk.index().child((Quad)i));
_children[i] = std::unique_ptr<ChunkNode>(new ChunkNode(chunk, this));
}
}