From 6c7e6861f80d15ce755a9e8f5fa775db110f8f78 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Tue, 27 May 2008 20:05:36 +0000 Subject: (svn r13297) -Codechange: Use GUIList for the town directory window --- src/town.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/town.h') 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; -- cgit v1.2.3-54-g00ecf