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:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-27 08:22:36 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-27 08:26:43 +0300
commitf4800d51617609dcde745e8c826e14bf30a8ad9a (patch)
treec659fb07334861175c1609d7bc55e21a4e84f002 /Benchmarks
parent7a4d9270dcffa9684607745db22f91e9dbec93db (diff)
Command arguments moved to constants.
Diffstat (limited to 'Benchmarks')
-rw-r--r--Benchmarks/Program.cs22
1 files changed, 11 insertions, 11 deletions
diff --git a/Benchmarks/Program.cs b/Benchmarks/Program.cs
index 97a0c58..f4f03c9 100644
--- a/Benchmarks/Program.cs
+++ b/Benchmarks/Program.cs
@@ -200,7 +200,7 @@ namespace com.clusterrr.Famicom.NesTiler.Benchmarks
var prefix = Path.GetFileNameWithoutExtension(imagePath);
var args = new string[] {
"--enable-palettes", "0,1,2,3",
- "-input-0", $"{imagePath}",
+ "--in-0", $"{imagePath}",
"--out-pattern-table-0", PatternTablePath(prefix, 0),
"--out-name-table-0", NameTablePath(prefix, 0),
"--out-attribute-table-0", AttrTablePath(prefix, 0),
@@ -221,8 +221,8 @@ namespace com.clusterrr.Famicom.NesTiler.Benchmarks
var prefix = Path.GetFileNameWithoutExtension(imagePath1) + "_" + Path.GetFileNameWithoutExtension(imagePath2);
var args = new string[] {
"--enable-palettes", "0,1,2,3",
- "-input-0", $"{imagePath1}",
- "-input-1", $"{imagePath2}",
+ "--in-0", $"{imagePath1}",
+ "--in-1", $"{imagePath2}",
"--out-pattern-table", PatternTablePath(prefix, 0),
"--out-name-table-0", NameTablePath(prefix, 0),
"--out-name-table-1", NameTablePath(prefix, 1),
@@ -246,8 +246,8 @@ namespace com.clusterrr.Famicom.NesTiler.Benchmarks
var prefix = Path.GetFileNameWithoutExtension(imagePath);
var args = new string[] {
"--enable-palettes", "0,1,2,3",
- "-input-0", $"{imagePath}:0:128",
- "-input-1", $"{imagePath}:128:112",
+ "--in-0", $"{imagePath}:0:128",
+ "--in-1", $"{imagePath}:128:112",
"--out-pattern-table-0", PatternTablePath(prefix, 0),
"--out-pattern-table-1", PatternTablePath(prefix, 1),
"--out-name-table-0", NameTablePath(prefix, 0),
@@ -271,8 +271,8 @@ namespace com.clusterrr.Famicom.NesTiler.Benchmarks
var prefix = Path.GetFileNameWithoutExtension(imagePath);
var args = new string[] {
"--enable-palettes", "0,1,2,3",
- "-input-0", $"{imagePath}:0:128",
- "-input-1", $"{imagePath}:128:112",
+ "--in-0", $"{imagePath}:0:128",
+ "--in-1", $"{imagePath}:128:112",
"--out-pattern-table-0", PatternTablePath(prefix, 0),
"--out-pattern-table-1", PatternTablePath(prefix, 1),
"--out-name-table-0", NameTablePath(prefix, 0),
@@ -297,10 +297,10 @@ namespace com.clusterrr.Famicom.NesTiler.Benchmarks
var prefix = Path.GetFileNameWithoutExtension(imagePath);
var args = new string[] {
"--enable-palettes", "0,1,2,3",
- "-input-0", $"{imagePath}:0:64",
- "-input-1", $"{imagePath}:64:64",
- "-input-2", $"{imagePath}:128:64",
- "-input-3", $"{imagePath}:192:48",
+ "--in-0", $"{imagePath}:0:64",
+ "--in-1", $"{imagePath}:64:64",
+ "--in-2", $"{imagePath}:128:64",
+ "--in-3", $"{imagePath}:192:48",
"--out-pattern-table-0", PatternTablePath(prefix, 0),
"--out-pattern-table-1", PatternTablePath(prefix, 1),
"--out-pattern-table-2", PatternTablePath(prefix, 2),