Fix #7870: Tiny typo in console message (#7879) [ci skip]

This commit is contained in:
TELK 2018-08-12 17:32:30 +09:00 committed by Aaron van Geffen
parent b2005c3b9f
commit 688741428c
1 changed files with 2 additions and 2 deletions

View File

@ -438,8 +438,8 @@ int32_t cmdline_for_screenshot(const char** argv, int32_t argc, ScreenshotOption
bool giantScreenshot = (argc == 5) && _stricmp(argv[2], "giant") == 0;
if (argc != 4 && argc != 8 && !giantScreenshot)
{
std::printf("Usage: openrct2 screenshot <file> <ouput_image> <width> <height> [<x> <y> <zoom> <rotation>]\n");
std::printf("Usage: openrct2 screenshot <file> <ouput_image> giant <zoom> <rotation>\n");
std::printf("Usage: openrct2 screenshot <file> <output_image> <width> <height> [<x> <y> <zoom> <rotation>]\n");
std::printf("Usage: openrct2 screenshot <file> <output_image> giant <zoom> <rotation>\n");
return -1;
}