diff options
Diffstat (limited to 'industry_gui.c')
-rw-r--r-- | industry_gui.c | 5 |
1 files changed, 2 insertions, 3 deletions
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" |