From e8ff6c541c918544f72dfdf1100f9d3ac3558185 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Tue, 24 Jan 2023 18:30:01 +0100 Subject: [PATCH] Minor, performance summary tool --- Tools/PerfSummary/Summary.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ static string relative( this LogData log ) } double rel = duration / log.runComplete; - return rel.print(); + return rel.ToString( "F4", CultureInfo.InvariantCulture ); } static string clip( this LogData log )