summaryrefslogtreecommitdiff
path: root/network_gui.c
diff options
context:
space:
mode:
authormatthijs <matthijs@openttd.org>2006-12-05 13:58:20 +0000
committermatthijs <matthijs@openttd.org>2006-12-05 13:58:20 +0000
commite6ade36de112f7a5a89513278e6784ba4f26c79f (patch)
treee23ebc401e3e8f7037ad38701e00a6bf1fb61136 /network_gui.c
parent75ec6d9b777400031fc90b82c8b056166365567b (diff)
downloadopenttd-e6ade36de112f7a5a89513278e6784ba4f26c79f.tar.xz
(svn r7372) - CodeChange: Rename all GetXXXArraySize() functions to GetNumXXX() and add GetMaxXXXIndex() functions. This prepares for the new pool interface.
Diffstat (limited to 'network_gui.c')
-rw-r--r--network_gui.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/network_gui.c b/network_gui.c
index 05ed7379d..30efc8e51 100644
--- a/network_gui.c
+++ b/network_gui.c
@@ -1490,7 +1490,9 @@ static const char *ChatTabCompletionNextItem(uint *item)
}
/* Then, try townnames */
- if (*item < (uint)MAX_CLIENT_INFO + GetTownArraySize()) {
+ /* Not that the following assumes all town indices are adjacent, ie no
+ * towns have been deleted. */
+ if (*item <= (uint)MAX_CLIENT_INFO + GetMaxTownIndex()) {
const Town *t;
FOR_ALL_TOWNS_FROM(t, *item - MAX_CLIENT_INFO) {