mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 22:28:56 +00:00
(svn r19522) -Feature: Sort industries alphabetically at the fund new industry window.
This commit is contained in:
parent
217a98e69b
commit
2b812ac2fa
@ -217,7 +217,8 @@ class BuildIndustryWindow : public Window {
|
||||
* The tests performed after the enabled allow to load the industries
|
||||
* In the same way they are inserted by grf (if any)
|
||||
*/
|
||||
for (IndustryType ind = 0; ind < NUM_INDUSTRYTYPES; ind++) {
|
||||
for (uint8 i = 0; i < NUM_INDUSTRYTYPES; i++) {
|
||||
IndustryType ind = _sorted_industry_types[i];
|
||||
const IndustrySpec *indsp = GetIndustrySpec(ind);
|
||||
if (indsp->enabled) {
|
||||
/* Rule is that editor mode loads all industries.
|
||||
@ -254,14 +255,16 @@ public:
|
||||
this->selected_index = -1;
|
||||
this->selected_type = INVALID_INDUSTRYTYPE;
|
||||
|
||||
/* Initialize arrays */
|
||||
this->SetupArrays();
|
||||
|
||||
this->callback_timer = DAY_TICKS;
|
||||
|
||||
this->InitNested(&_build_industry_desc, 0);
|
||||
}
|
||||
|
||||
virtual void OnInit()
|
||||
{
|
||||
this->SetupArrays();
|
||||
}
|
||||
|
||||
virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
|
||||
{
|
||||
switch (widget) {
|
||||
|
Loading…
Reference in New Issue
Block a user