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')
-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);
}
}