diff options
Diffstat (limited to 'src/voxel.cpp')
-rw-r--r-- | src/voxel.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/voxel.cpp b/src/voxel.cpp index 335ab307c..bd14acb06 100644 --- a/src/voxel.cpp +++ b/src/voxel.cpp @@ -180,7 +180,9 @@ void VoxelManipulator::addArea(const VoxelArea &area) dstream<<std::endl;*/ // Allocate and clear new data - MapNode *new_data = new MapNode[new_size]; + // FIXME: UGLY KLUDGE because MapNode default constructor is FUBAR; it + // initialises data that is going to be overwritten anyway + MapNode *new_data = (MapNode*)new char[new_size * sizeof (*new_data)]; assert(new_data); u8 *new_flags = new u8[new_size]; assert(new_flags); |