(svn r22314) -Change: Put NewGRF supplied townnames at the top of the dropdown list.

pull/155/head
frosch 13 years ago
parent 40d7a2da71
commit 9a43108ae9

@ -245,8 +245,8 @@ struct GameOptionsWindow : Window {
/* Append newgrf_names at the end of list */
if (newgrf_names.size() > 0) {
list->push_back(new DropDownListItem(-1, false)); // separator line
list->splice(list->end(), newgrf_names);
newgrf_names.push_back(new DropDownListItem(-1, false)); // separator line
list->splice(list->begin(), newgrf_names);
}
break;
}

Loading…
Cancel
Save