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
commitcfb962c7f135111891c28c6577f27f42d5365aa1 (patch)
treea21d7ea96d49a5cabdc5dfee9fc089ffed41e91c /src/town.h
parentee9a9503cee6b65d1258c808ede2523116b61af4 (diff)
downloadopenttd-cfb962c7f135111891c28c6577f27f42d5365aa1.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;