From 2ae20c5fc440a9d46b158f01987d38b4551774f8 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Sun, 21 May 2023 22:36:14 +0200 Subject: [PATCH] Add formatting to network profiler bytes values --- Source/Editor/Windows/Profiler/Network.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Editor/Windows/Profiler/Network.cs b/Source/Editor/Windows/Profiler/Network.cs index 662ccf445..f0b93a03c 100644 --- a/Source/Editor/Windows/Profiler/Network.cs +++ b/Source/Editor/Windows/Profiler/Network.cs @@ -52,7 +52,7 @@ namespace FlaxEditor.Windows.Profiler private static string FormatSampleBytes(float v) { - return (uint)v + " bytes"; + return Utilities.Utils.FormatBytesCount((ulong)v); } ///