(svn r10773) -Codechange: use pool.CleanPool instead of CleanPool(&pool) and similarly for AddBlock*.

This commit is contained in:
rubidium
2007-08-03 20:18:38 +00:00
parent 9741094464
commit 2dd7a5d296
8 changed files with 30 additions and 48 deletions

View File

@@ -1943,8 +1943,8 @@ void IndustryMonthlyLoop()
void InitializeIndustries()
{
CleanPool(&_Industry_pool);
AddBlockToPool(&_Industry_pool);
_Industry_pool.CleanPool();
_Industry_pool.AddBlockToPool();
ResetIndustryCounts();
_industry_sort_dirty = true;