From 505566da5ca515428eed3b618f2f67aac2077f32 Mon Sep 17 00:00:00 2001 From: truelight Date: Tue, 22 Aug 2006 15:33:35 +0000 Subject: (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones -Codechange: use IsValidXXX where ever possible Note: both changes to prepare for new pool system, which needs those changes. For every pool there are 2 ugly lines, which will be removed when done implementing new pool system. Based on FS#13 by blathijs, partly implemented. --- industry_gui.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'industry_gui.c') diff --git a/industry_gui.c b/industry_gui.c index 82ec88279..0b6c3c63c 100644 --- a/industry_gui.c +++ b/industry_gui.c @@ -561,9 +561,8 @@ static void MakeSortedIndustryList(void) if (_industry_sort == NULL) error("Could not allocate memory for the industry-sorting-list"); - FOR_ALL_INDUSTRIES(i) { - if (i->xy != 0) _industry_sort[n++] = i; - } + FOR_ALL_INDUSTRIES(i) _industry_sort[n++] = i; + _num_industry_sort = n; _last_industry = NULL; // used for "cache" -- cgit v1.2.3-54-g00ecf