From b2e1b7ca73d40d60455797f11ddaeb9006c1f5d0 Mon Sep 17 00:00:00 2001 From: Jolly-Pirate <4613678+Jolly-Pirate@users.noreply.github.com> Date: Sun, 12 Mar 2023 10:35:31 -0400 Subject: [PATCH] remove the video bitrate formatting Remove the comma separation for video bitrates in the report. This formatting was added in v7.6.1, reverting it back to what it was in v7.6.0. https://github.com/UniqProject/BDInfo/compare/v0.7.6.0b...v0.7.6.1b#diff-7618f79a57ccf5f58d759aa9204c3acce9f5cc2ead75157420e9080fbad9ffa7R524 --- BDInfo/FormReport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BDInfo/FormReport.cs b/BDInfo/FormReport.cs index 060e0c370..8451c792d 100644 --- a/BDInfo/FormReport.cs +++ b/BDInfo/FormReport.cs @@ -521,7 +521,7 @@ public void Generate( } string streamBitrate = string.Format(CultureInfo.InvariantCulture, - "{0:N0}", + "{0:D}", (int)Math.Round((double)stream.BitRate / 1000)); if (stream.AngleIndex > 0) {