| 342 | } |
| 343 | |
| 344 | static DropDownList BuildMapsizeDropDown() |
| 345 | { |
| 346 | DropDownList list; |
| 347 | |
| 348 | for (uint i = MIN_MAP_SIZE_BITS; i <= MAX_MAP_SIZE_BITS; i++) { |
| 349 | list.push_back(MakeDropDownListStringItem(GetString(STR_JUST_INT, 1ULL << i), i)); |
| 350 | } |
| 351 | |
| 352 | return list; |
| 353 | } |
| 354 | |
| 355 | static DropDownList BuildTownNameDropDown() |
| 356 | { |
no test coverage detected