summaryrefslogtreecommitdiff
path: root/src/noise.cpp
diff options
context:
space:
mode:
authorproller <proller@github.com>2013-03-13 00:41:14 +0400
committerkwolekr <kwolekr@minetest.net>2013-03-16 21:48:32 -0400
commit165498cecfc11f3471d84855f4d019be9b353621 (patch)
treea907ea34711c3c56d29c691d985e7047413c018e /src/noise.cpp
parente3badd7062d4bee62335cf100f3f91ef4c370aae (diff)
downloadminetest-165498cecfc11f3471d84855f4d019be9b353621.tar.gz
minetest-165498cecfc11f3471d84855f4d019be9b353621.tar.bz2
minetest-165498cecfc11f3471d84855f4d019be9b353621.zip
initial mapgen indev version with farscale feature and huge caves
Diffstat (limited to 'src/noise.cpp')
-rw-r--r--src/noise.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/noise.cpp b/src/noise.cpp
index 49b5f7e58..ba7c30574 100644
--- a/src/noise.cpp
+++ b/src/noise.cpp
@@ -524,6 +524,7 @@ float *Noise::perlinMap2D(float x, float y) {
for (j = 0; j != sy; j++) {
for (i = 0; i != sx; i++) {
result[index] += g * buf[index];
+//dstream << "pm2d i="<<index<<" r="<< result[index]<<std::endl;
index++;
}
}