1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Fix documentation of sprite exportalldat command (#11799)

This commit is contained in:
Michael Steenbeek
2020-05-23 18:32:41 +02:00
committed by GitHub
parent 82371fb003
commit 10209690c2
2 changed files with 2 additions and 2 deletions

View File

@@ -462,7 +462,7 @@ int32_t cmdline_for_sprite(const char** argv, int32_t argc)
{
if (argc < 3)
{
fprintf(stdout, "usage: sprite exportall <spritefile> <output directory>\n");
fprintf(stdout, "usage: sprite exportalldat <DAT identifier> <output directory>\n");
return -1;
}

View File

@@ -38,7 +38,7 @@ const CommandLineCommand CommandLine::SpriteCommands[]
DefineCommand("details", "<spritefile> [idx]", SpriteOptions, HandleSprite),
DefineCommand("export", "<spritefile> <idx> <output>", SpriteOptions, HandleSprite),
DefineCommand("exportall", "<spritefile> <output directory>", SpriteOptions, HandleSprite),
DefineCommand("exportalldat", "<datname> <output directory>", SpriteOptions, HandleSprite),
DefineCommand("exportalldat", "<DAT identifier> <output directory>", SpriteOptions, HandleSprite),
CommandTableEnd
};