From d0b8a0ec61b2b75d46d4fbe62f7c8b85ae2aa0dc Mon Sep 17 00:00:00 2001 From: Hielke Morsink Date: Fri, 1 Jun 2018 12:53:20 +0200 Subject: [PATCH] Remove spaces from screenshot options --- src/openrct2/cmdline/ScreenshotCommands.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openrct2/cmdline/ScreenshotCommands.cpp b/src/openrct2/cmdline/ScreenshotCommands.cpp index a1736e963e..5528d8f254 100644 --- a/src/openrct2/cmdline/ScreenshotCommands.cpp +++ b/src/openrct2/cmdline/ScreenshotCommands.cpp @@ -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 };