summaryrefslogtreecommitdiff
path: root/src/tgp.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-10-12 18:41:53 +0000
committerrubidium <rubidium@openttd.org>2014-10-12 18:41:53 +0000
commit771dcf3b7b15f58e1d6fb2795e7df3c00ebf2809 (patch)
treee7c1e9afe60baf165648954cde2110ad598aefbd /src/tgp.cpp
parentfddeeb5e49f5daee49d79210dcfa1c845ff4a0d5 (diff)
downloadopenttd-771dcf3b7b15f58e1d6fb2795e7df3c00ebf2809.tar.xz
(svn r27003) -Cleanup: fix the use of spaces and asterices "around" some comments
Diffstat (limited to 'src/tgp.cpp')
-rw-r--r--src/tgp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tgp.cpp b/src/tgp.cpp
index 7ee2f6e92..95725fc6f 100644
--- a/src/tgp.cpp
+++ b/src/tgp.cpp
@@ -335,7 +335,7 @@ static void HeightMapGenerate()
}
/* It is regular iteration round.
- * Interpolate height values at odd x, even y tiles */
+ * Interpolate height values at odd x, even y tiles */
for (int y = 0; y <= _height_map.size_y; y += 2 * step) {
for (int x = 0; x <= _height_map.size_x - 2 * step; x += 2 * step) {
height_t h00 = _height_map.height(x + 0 * step, y);