diff options
author | madmaxoft <github@xoft.cz> | 2014-03-21 22:53:46 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-03-21 22:53:46 +0100 |
commit | c9163d39f74302fc943e6c9b3b8442061a5f089e (patch) | |
tree | 3b11f69710f5d718191fe5254555171bcf270745 /src/Generating/HeiGen.cpp | |
parent | Updated the tolua++ executable for Win builds. (diff) | |
download | cuberite-c9163d39f74302fc943e6c9b3b8442061a5f089e.tar cuberite-c9163d39f74302fc943e6c9b3b8442061a5f089e.tar.gz cuberite-c9163d39f74302fc943e6c9b3b8442061a5f089e.tar.bz2 cuberite-c9163d39f74302fc943e6c9b3b8442061a5f089e.tar.lz cuberite-c9163d39f74302fc943e6c9b3b8442061a5f089e.tar.xz cuberite-c9163d39f74302fc943e6c9b3b8442061a5f089e.tar.zst cuberite-c9163d39f74302fc943e6c9b3b8442061a5f089e.zip |
Diffstat (limited to 'src/Generating/HeiGen.cpp')
-rw-r--r-- | src/Generating/HeiGen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Generating/HeiGen.cpp b/src/Generating/HeiGen.cpp index 10710b4a1..3621421c2 100644 --- a/src/Generating/HeiGen.cpp +++ b/src/Generating/HeiGen.cpp @@ -428,7 +428,7 @@ void cHeiGenBiomal::GenHeightMap(int a_ChunkX, int a_ChunkZ, cChunkDef::HeightMa Height[x + 17 * z] = GetHeightAt(x, z, a_ChunkX, a_ChunkZ, Biomes); } } - LinearUpscale2DArrayInPlace(Height, 17, 17, STEPX, STEPZ); + LinearUpscale2DArrayInPlace<17, 17, STEPX, STEPZ>(Height); // Copy into the heightmap for (int z = 0; z < cChunkDef::Width; z++) |