summaryrefslogtreecommitdiff
path: root/src/town.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-03-08 01:20:11 +0000
committersmatz <smatz@openttd.org>2009-03-08 01:20:11 +0000
commitf5b24edc1e33a43c6bd725482b9150f22414f2f2 (patch)
treeb5902de710ecffe04af17e8f76703457edc2aeba /src/town.h
parentc71898461845992cf05f3e17e8ab871b2cc7f463 (diff)
downloadopenttd-f5b24edc1e33a43c6bd725482b9150f22414f2f2.tar.xz
(svn r15642) -Codechange: use a default parameter value in CalcClosestTownFromTile
Diffstat (limited to 'src/town.h')
-rw-r--r--src/town.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/town.h b/src/town.h
index 169161505..3588de76a 100644
--- a/src/town.h
+++ b/src/town.h
@@ -340,7 +340,7 @@ static inline Town *GetRandomTown()
return GetTown(index);
}
-Town *CalcClosestTownFromTile(TileIndex tile, uint threshold);
+Town *CalcClosestTownFromTile(TileIndex tile, uint threshold = UINT_MAX);
#define FOR_ALL_TOWNS_FROM(t, start) for (t = GetTown(start); t != NULL; t = (t->index + 1U < GetTownPoolSize()) ? GetTown(t->index + 1U) : NULL) if (t->IsValid())
#define FOR_ALL_TOWNS(t) FOR_ALL_TOWNS_FROM(t, 0)