(svn r16474) -Fix [FS#2933]: could set company related settings via query window

pull/155/head
rubidium 15 years ago
parent e4cbd54748
commit b7dfc3aa0b

@ -1541,7 +1541,11 @@ struct GameSettingsWindow : Window {
/* Save the correct currency-translated value */
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();
}
}

Loading…
Cancel
Save