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:
Diffstat (limited to 'Benchmarks/Program.cs')
-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)