summaryrefslogtreecommitdiff
path: root/src/town_cmd.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2011-05-14 18:35:40 +0000
committeralberth <alberth@openttd.org>2011-05-14 18:35:40 +0000
commit28092366ec8aaf953b6e8bb92d745ee2c32fad1e (patch)
treee2176cb86f0b1f62424b6ce93812fad1260e6c84 /src/town_cmd.cpp
parentaa4c7e021c8622aedeae780af3d8d362b1e5d515 (diff)
downloadopenttd-28092366ec8aaf953b6e8bb92d745ee2c32fad1e.tar.xz
(svn r22459) -Doc: Typo fixes and doxygen markup improvements.
Diffstat (limited to 'src/town_cmd.cpp')
-rw-r--r--src/town_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp
index 25f59d174..ddf86e1f7 100644
--- a/src/town_cmd.cpp
+++ b/src/town_cmd.cpp
@@ -2053,7 +2053,7 @@ static bool CheckTownBuild2x2House(TileIndex *tile, Town *t, uint maxz, bool nos
{
TileIndex tile2 = *tile;
- for (DiagDirection d = DIAGDIR_SE;;d++) { // 'd' goes through DIAGDIR_SE, DIAGDIR_SW, DIAGDIR_NW, DIAGDIR_END
+ for (DiagDirection d = DIAGDIR_SE;; d++) { // 'd' goes through DIAGDIR_SE, DIAGDIR_SW, DIAGDIR_NW, DIAGDIR_END
if (TownLayoutAllows2x2HouseHere(t, tile2) && CheckFree2x2Area(tile2, t->index, maxz, noslope)) {
*tile = tile2;
return true;