summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorKonstantin <const@const.me>2023-01-24 18:30:01 +0100
committerKonstantin <const@const.me>2023-01-24 18:30:01 +0100
commite8ff6c541c918544f72dfdf1100f9d3ac3558185 (patch)
tree05ea0d814c59b1cf6f5e30b7ea9716f279597403 /Tools
parent993cfa55dcae112822a2e9681056e49697d71338 (diff)
Minor, performance summary tool
Diffstat (limited to 'Tools')
-rw-r--r--Tools/PerfSummary/Summary.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/PerfSummary/Summary.cs b/Tools/PerfSummary/Summary.cs
index 8cea958..0518de6 100644
--- a/Tools/PerfSummary/Summary.cs
+++ b/Tools/PerfSummary/Summary.cs
@@ -54,7 +54,7 @@ namespace PerfSummary
}
double rel = duration / log.runComplete;
- return rel.print();
+ return rel.ToString( "F4", CultureInfo.InvariantCulture );
}
static string clip( this LogData log )