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-15 23:52:43 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-15 23:52:43 +0300
commita0b2efdee8482c7b6343425c2b09bbf4d466abb8 (patch)
treecdab174266842396417275407529e63376606c27 /Benchmarks
parent6b20264f0d07295448a96256f3cdaf1da5478879 (diff)
Tests fixes, minor changes
Diffstat (limited to 'Benchmarks')
-rw-r--r--Benchmarks/Program.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Benchmarks/Program.cs b/Benchmarks/Program.cs
index 5455a69..6842a3b 100644
--- a/Benchmarks/Program.cs
+++ b/Benchmarks/Program.cs
@@ -184,7 +184,7 @@ namespace com.clusterrr.Famicom.NesTiler.Benchmarks
var r = Program.Main(args);
if (r != 0) throw new InvalidOperationException($"Return code: {r}");
- foreach (var file in Directory.GetFiles(".", "*.bin")) File.Copy(file, Path.Join(@"E:\bins", Path.GetFileName(file)), true);
+ //foreach (var file in Directory.GetFiles(".", "*.bin")) File.Copy(file, Path.Join(@"E:\bins", Path.GetFileName(file)), true);
}
public void DoBenchmarkSharedPattern(string imagePath1, string imagePath2, string bgColor = "auto")
@@ -204,12 +204,12 @@ namespace com.clusterrr.Famicom.NesTiler.Benchmarks
"--out-palette-2", PalettePath(prefix, 2),
"--out-palette-3", PalettePath(prefix, 3),
"--bg-color", bgColor,
- "--share-pattern-tables"
+ "--share-pattern-table"
};
var r = Program.Main(args);
if (r != 0) throw new InvalidOperationException($"Return code: {r}");
- foreach (var file in Directory.GetFiles(".", "*.bin")) File.Copy(file, Path.Join(@"E:\bins", Path.GetFileName(file)), true);
+ //foreach (var file in Directory.GetFiles(".", "*.bin")) File.Copy(file, Path.Join(@"E:\bins", Path.GetFileName(file)), true);
}
public void DoBenchmarkSplit2(string imagePath)