summaryrefslogtreecommitdiff
path: root/src/town.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-05-27 20:05:36 +0000
committerpeter1138 <peter1138@openttd.org>2008-05-27 20:05:36 +0000
commit6c7e6861f80d15ce755a9e8f5fa775db110f8f78 (patch)
treea21d7ea96d49a5cabdc5dfee9fc089ffed41e91c /src/town.h
parentf538282f7a2bab6f95fdfe25f60718580bf0c5d5 (diff)
downloadopenttd-6c7e6861f80d15ce755a9e8f5fa775db110f8f78.tar.xz
(svn r13297) -Codechange: Use GUIList for the town directory window
Diffstat (limited to 'src/town.h')
-rw-r--r--src/town.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/town.h b/src/town.h
index d19a6b387..155a392ca 100644
--- a/src/town.h
+++ b/src/town.h
@@ -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;