forked from mirror/OpenTTD
(svn r6055) -Codechange: added GetXXXArraySize, which returns HighestID + 1 (or, will do that).
It isn't the best name, but we couldn't find any better. This unifies the pool-system even more.
This commit is contained in:
@@ -1508,7 +1508,7 @@ static const char *ChatTabCompletionNextItem(uint *item)
|
||||
}
|
||||
|
||||
/* Then, try townnames */
|
||||
if (*item < (uint)MAX_CLIENT_INFO + GetTownPoolSize()) {
|
||||
if (*item < (uint)MAX_CLIENT_INFO + GetTownArraySize()) {
|
||||
const Town *t;
|
||||
|
||||
FOR_ALL_TOWNS_FROM(t, *item - MAX_CLIENT_INFO) {
|
||||
|
Reference in New Issue
Block a user