(svn r22001) -Codechange: Rename difficulty.number_industries to difficulty.industry_density.

This commit is contained in:
alberth
2011-02-06 18:26:50 +00:00
parent d84502c432
commit 4364cec392
7 changed files with 20 additions and 20 deletions

View File

@@ -602,7 +602,7 @@ public:
this->SetupArrays();
const IndustrySpec *indsp = (this->selected_type == INVALID_INDUSTRYTYPE) ? NULL : GetIndustrySpec(this->selected_type);
if (indsp == NULL) this->enabled[this->selected_index] = _settings_game.difficulty.number_industries != ID_FUND_ONLY;
if (indsp == NULL) this->enabled[this->selected_index] = _settings_game.difficulty.industry_density != ID_FUND_ONLY;
this->SetButtons();
}
};