Remove spaces from screenshot options

This commit is contained in:
Hielke Morsink 2018-06-01 12:53:20 +02:00 committed by Michael Steenbeek
parent 20fb4501d0
commit d0b8a0ec61
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@ static constexpr const CommandLineOptionDefinition ScreenshotOptionsDef[]
{ CMDLINE_TYPE_SWITCH, &options.clear_grass, NAC, "clear-grass", "set all grass to be clear of weeds" },
{ CMDLINE_TYPE_SWITCH, &options.mowed_grass, NAC, "mowed-grass", "set all grass to be mowed" },
{ CMDLINE_TYPE_SWITCH, &options.water_plants, NAC, "water-plants", "water plants for the screenshot" },
{ CMDLINE_TYPE_SWITCH, &options.fix_vandalism, NAC, "fix vandalism", "fix vandalism" },
{ CMDLINE_TYPE_SWITCH, &options.remove_litter, NAC, "remove litter", "remove litter" },
{ CMDLINE_TYPE_SWITCH, &options.fix_vandalism, NAC, "fix-vandalism", "fix vandalism for the screenshot" },
{ CMDLINE_TYPE_SWITCH, &options.remove_litter, NAC, "remove-litter", "remove litter for the screenshot" },
{ CMDLINE_TYPE_SWITCH, &options.tidy_up_park, NAC, "tidy-up-park", "clear grass, water plants, fix vandalism and remove litter" },
OptionTableEnd
};