summaryrefslogtreecommitdiff
path: root/src/tilearea.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-05-01 19:14:12 +0000
committerrubidium <rubidium@openttd.org>2011-05-01 19:14:12 +0000
commit1a515e6344028854c855671c19f49d8f869eb18f (patch)
treee1bba97c1a8fd80f564729cc2d5fc2049110cb2a /src/tilearea.cpp
parentb27dd1dcd7375dae63724879eb0f56dd703e5312 (diff)
downloadopenttd-1a515e6344028854c855671c19f49d8f869eb18f.tar.xz
(svn r22405) -Document: some more "random-ish" tidbits
Diffstat (limited to 'src/tilearea.cpp')
-rw-r--r--src/tilearea.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tilearea.cpp b/src/tilearea.cpp
index 104f21ed7..29a164351 100644
--- a/src/tilearea.cpp
+++ b/src/tilearea.cpp
@@ -105,8 +105,8 @@ void TileArea::ClampToMap()
/**
* Construct the iterator.
- * @param begin Tile from where to begin iterating.
- * @param end Tile where to end the iterating.
+ * @param corner1 Tile from where to begin iterating.
+ * @param corner2 Tile where to end the iterating.
*/
DiagonalTileIterator::DiagonalTileIterator(TileIndex corner1, TileIndex corner2) : TileIterator(corner2), base_x(TileX(corner2)), base_y(TileY(corner2)), a_cur(0), b_cur(0)
{