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-17 23:19:06 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-17 23:19:06 +0300
commit6a9fab338e52c4bafc7424cc7805fd1183aa8f02 (patch)
tree8c64373c3aa5a8179e1f141bfc79324aaacf9d0a /Benchmarks
parentc1898354111509268d8227406f16c7c1f7ee327a (diff)
Attribute table offset
Diffstat (limited to 'Benchmarks')
-rw-r--r--Benchmarks/Program.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/Benchmarks/Program.cs b/Benchmarks/Program.cs
index 8453b67..fff6045 100644
--- a/Benchmarks/Program.cs
+++ b/Benchmarks/Program.cs
@@ -10,7 +10,6 @@ namespace com.clusterrr.Famicom.NesTiler.Benchmarks
static void Main()
{
var summary = BenchmarkRunner.Run<Benchmarks>();
- Console.WriteLine(summary);
}
[Benchmark]
@@ -238,7 +237,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 DoBenchmarkSplit2Lossy(string imagePath)
@@ -295,7 +294,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);
}
}