Fix missing assignment

This commit is contained in:
Marc Gilleron 2021-10-04 01:33:32 +01:00
parent 191659ae7c
commit c921922a44

View File

@ -100,7 +100,7 @@ void VoxelMemoryPool::clear() {
_pools.clear();
_used_memory = 0;
_total_memory = 0;
_used_blocks;
_used_blocks = 0;
}
void VoxelMemoryPool::debug_print() {