this is fine right?
authornemo
Tue, 11 Mar 2014 22:32:48 -0400
changeset 10191 d9862e01309a
parent 10190 e4f81f6d428c
child 10192 bb1310c4bd79
this is fine right?
hedgewars/uLandGenPerlin.pas
--- a/hedgewars/uLandGenPerlin.pas	Tue Mar 11 00:59:42 2014 +0400
+++ b/hedgewars/uLandGenPerlin.pas	Tue Mar 11 22:32:48 2014 -0400
@@ -171,10 +171,10 @@
 
     for x:= 0 to width do
         if Land[height - 1, x] = lfObjMask then FillLand(x, height - 1, 0, lfBasic);
-    FillLand(0, minY, lfBasic, lfObjMask);
+    //FillLand(0, minY, lfBasic, lfObjMask);
 
     // strip all lfObjMask pixels
-    for y:= 0 to LAND_HEIGHT - 1 do
+    for y:= minY to LAND_HEIGHT - 1 do
         for x:= 0 to LAND_WIDTH - 1 do
             if Land[y, x] = lfObjMask then
                 Land[y, x]:= 0;