diff --git a/src/settings_gui.cpp b/src/settings_gui.cpp index bf2d872601..12e5a37108 100644 --- a/src/settings_gui.cpp +++ b/src/settings_gui.cpp @@ -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; }