Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/NesTiler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NesTiler/CmdArgs.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/NesTiler/CmdArgs.cs b/NesTiler/CmdArgs.cs
index bc09c28..56c82cf 100644
--- a/NesTiler/CmdArgs.cs
+++ b/NesTiler/CmdArgs.cs
@@ -37,7 +37,7 @@
public const string S = "i";
public const string L = "in";
public string? Params { get; } = "<file>[:offset[:height]]";
- public string Description { get; } = "input file number #, optionally cropped vertically";
+ public string Description { get; } = "input filename number #, optionally cropped vertically";
public bool HasIndex { get; } = true;
public string Short { get; } = S;
public string Long { get; } = L;
@@ -102,8 +102,8 @@
{
public const string S = "o";
public const string L = "pattern-offset";
- public string? Params { get; } = "<tile_id>";
- public string Description { get; } = "first tile ID for pattern table for file number # (default - 0)";
+ public string? Params { get; } = "<tile_index>";
+ public string Description { get; } = "first tile index for pattern table for file number # (default - 0)";
public bool HasIndex { get; } = true;
public string Short { get; } = S;
public string Long { get; } = L;