1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-09-01 10:59:12 +00:00

(svn r13789) -Fix (r13781): Saved preset was not automatically selected.

This commit is contained in:
2008-07-22 20:52:30 +00:00
parent 06a52be95c
commit 9a6b7a90e0

View File

@@ -607,12 +607,14 @@ struct NewGRFWindow : public Window {
GetGRFPresetList(&_grf_preset_list);
/* Switch to this preset */
for (uint i = 0; i < lengthof(_grf_preset_list); i++) {
for (uint i = 0; i < _grf_preset_list.Length(); i++) {
if (_grf_preset_list[i] != NULL && strcmp(_grf_preset_list[i], str) == 0) {
this->preset = i;
break;
}
}
this->SetDirty();
break;
case SNGRFS_SET_PARAMETERS: {