mirror of https://github.com/OpenTTD/OpenTTD
(svn r16474) -Fix [FS#2933]: could set company related settings via query window
parent
34f6b8614e
commit
0eaec8edca
|
@ -1541,7 +1541,11 @@ struct GameSettingsWindow : Window {
|
||||||
/* Save the correct currency-translated value */
|
/* Save the correct currency-translated value */
|
||||||
if (sd->desc.flags & SGF_CURRENCY) value /= _currency->rate;
|
if (sd->desc.flags & SGF_CURRENCY) value /= _currency->rate;
|
||||||
|
|
||||||
SetSettingValue(this->valuewindow_entry->d.entry.index, value);
|
if ((sd->desc.flags & SGF_PER_COMPANY) != 0) {
|
||||||
|
SetCompanySetting(this->valuewindow_entry->d.entry.index, value);
|
||||||
|
} else {
|
||||||
|
SetSettingValue(this->valuewindow_entry->d.entry.index, value);
|
||||||
|
}
|
||||||
this->SetDirty();
|
this->SetDirty();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue