|
@@ -84,13 +84,13 @@ int main()
|
|
|
world[j][i][t] = 0.0f;
|
|
|
|
|
|
// Basic water
|
|
|
- const int waterLevel = 10.0f;
|
|
|
+ const float waterLevel = 1.0f;
|
|
|
for (int j(0); j < HEIGHT; j++)
|
|
|
for (int i(0); i < WIDTH; i++)
|
|
|
world[j][i][WATER] = waterLevel / (HEIGHT - j);
|
|
|
|
|
|
// Top mountain line
|
|
|
- const int mountainLevel = 10.0f;
|
|
|
+ const float mountainLevel = 1.0f;
|
|
|
for (int j(0); j < HEIGHT; j++)
|
|
|
for (int i(0); i < WIDTH; i++)
|
|
|
world[j][i][MOUNTAIN] = mountainLevel / (1 + j);
|