(svn r13297) -Codechange: Use GUIList for the town directory window

This commit is contained in:
peter1138
2008-05-27 20:05:36 +00:00
parent f538282f7a
commit 6c7e6861f8
4 changed files with 111 additions and 92 deletions

View File

@@ -345,10 +345,6 @@ Town *CalcClosestTownFromTile(TileIndex tile, uint threshold);
#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)
extern bool _town_sort_dirty;
extern byte _town_sort_order;
extern const Town **_town_sort;
extern Town *_cleared_town;
extern int _cleared_town_rating;