Add formatting to network profiler bytes values

This commit is contained in:
Wojtek Figat
2023-05-21 22:36:14 +02:00
parent d5fcdf6edb
commit 2ae20c5fc4

View File

@@ -52,7 +52,7 @@ namespace FlaxEditor.Windows.Profiler
private static string FormatSampleBytes(float v)
{
return (uint)v + " bytes";
return Utilities.Utils.FormatBytesCount((ulong)v);
}
/// <inheritdoc />