diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-12 19:55:49 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-12 19:55:49 +0200 |
commit | 1927095d25614bcec73f93e74424110d3feefc7f (patch) | |
tree | f24bafbd79baf304f3ff7633f25be64b06cf5f21 /source/Generating/CompoGen.cpp | |
parent | cWorld: Temporary fix for FS #338 (diff) | |
download | cuberite-1927095d25614bcec73f93e74424110d3feefc7f.tar cuberite-1927095d25614bcec73f93e74424110d3feefc7f.tar.gz cuberite-1927095d25614bcec73f93e74424110d3feefc7f.tar.bz2 cuberite-1927095d25614bcec73f93e74424110d3feefc7f.tar.lz cuberite-1927095d25614bcec73f93e74424110d3feefc7f.tar.xz cuberite-1927095d25614bcec73f93e74424110d3feefc7f.tar.zst cuberite-1927095d25614bcec73f93e74424110d3feefc7f.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Generating/CompoGen.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/Generating/CompoGen.cpp b/source/Generating/CompoGen.cpp index 1d2affc94..c8f8ac069 100644 --- a/source/Generating/CompoGen.cpp +++ b/source/Generating/CompoGen.cpp @@ -10,6 +10,7 @@ #include "Globals.h" #include "CompoGen.h" #include "../BlockID.h" +#include "../LinearUpscale.h" @@ -441,7 +442,7 @@ void cCompoGenNether::ComposeTerrain(cChunkDesc & a_ChunkDesc) m_Noise2.IntNoise3DInt(BaseX + INTERPOL_X * x, 0, BaseZ + INTERPOL_Z * z) / 256; } // for x, z - FloorLo[] - IntArrayLinearInterpolate2D(FloorLo, 17, 17, INTERPOL_X, INTERPOL_Z); + ArrayLinearUpscale2D(FloorLo, 17, 17, INTERPOL_X, INTERPOL_Z); // Interpolate segments: for (int Segment = 0; Segment < MaxHeight; Segment += SEGMENT_HEIGHT) @@ -454,7 +455,7 @@ void cCompoGenNether::ComposeTerrain(cChunkDesc & a_ChunkDesc) m_Noise2.IntNoise3DInt(BaseX + INTERPOL_Z * x, Segment + SEGMENT_HEIGHT, BaseZ + INTERPOL_Z * z) / 256; } // for x, z - FloorLo[] - IntArrayLinearInterpolate2D(FloorHi, 17, 17, INTERPOL_X, INTERPOL_Z); + ArrayLinearUpscale2D(FloorHi, 17, 17, INTERPOL_X, INTERPOL_Z); // Interpolate between FloorLo and FloorHi: for (int z = 0; z < 16; z++) for (int x = 0; x < 16; x++) |