diff options
Diffstat (limited to '')
-rw-r--r-- | source/Generating/HeiGen.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/Generating/HeiGen.cpp b/source/Generating/HeiGen.cpp index 085459ad7..baf013a16 100644 --- a/source/Generating/HeiGen.cpp +++ b/source/Generating/HeiGen.cpp @@ -229,6 +229,12 @@ void cHeiGenBiomal::GenHeightMap(int a_ChunkX, int a_ChunkZ, cChunkDef::HeightMa } // for z /* + _X 2013_04_22: + There's no point in precalculating the entire perlin noise arrays, too many values are calculated uselessly, + resulting in speed DEcrease. + */ + + /* // Linearly interpolate 4x4 blocks of heightmap: // This is fast, but really ugly! Do not use! const int STEPZ = 4; // Must be a divisor of 16 |