diff options
Diffstat (limited to 'src/heightmap.cpp')
-rw-r--r-- | src/heightmap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/heightmap.cpp b/src/heightmap.cpp index 5acb8916b..6e785fcc5 100644 --- a/src/heightmap.cpp +++ b/src/heightmap.cpp @@ -143,7 +143,7 @@ void FixedHeightmap::makeDiamond( f32 n = avgDiagNeighbours(center, a/2); // Add (-1.0...1.0) * randmax - n += ((float)rand() / (float)(RAND_MAX/2) - 1.0)*randmax; + n += ((float)myrand() / (float)(MYRAND_MAX/2) - 1.0)*randmax; bool worked = setGroundHeightParent(center, n); if(a >= 2 && worked) @@ -176,7 +176,7 @@ void FixedHeightmap::makeSquare( f32 n = avgNeighbours(center, a/2); // Add (-1.0...1.0) * randmax - n += ((float)rand() / (float)(RAND_MAX/2) - 1.0)*randmax; + n += ((float)myrand() / (float)(MYRAND_MAX/2) - 1.0)*randmax; bool worked = setGroundHeightParent(center, n); if(a >= 4 && worked) |