From b752e78036ffd653b7a809af81798d8b955c41e4 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 10 Jun 2015 21:29:11 +1000 Subject: [PATCH] noise-tool: remove noisy debug messages --- tools/noise.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/noise.cpp b/tools/noise.cpp index bd8cec62..51704988 100644 --- a/tools/noise.cpp +++ b/tools/noise.cpp @@ -102,8 +102,6 @@ hydraulic_erode (util::image::buffer &height, const unsigned ticks) water[i] -= EVAPORATION; height[i] += SOLUBILITY * EVAPORATION; } - - std::cerr << "eroded: " << total << '\n'; } // forcibly evaporate all remaining water. @@ -177,8 +175,6 @@ thermal_erode (util::image::buffer &height, if (h[7] < centre) height[(y + 1) * height.s + (x + 0)] += dist; if (h[8] < centre) height[(y + 1) * height.s + (x + 1)] += dist; } - - std::cerr << "eroded: " << total << '\n'; }