Merge branch 'Zode-fix-profiler-memory'

This commit is contained in:
Wojtek Figat
2025-04-29 09:17:37 +02:00

View File

@@ -492,7 +492,7 @@ namespace FlaxEditor.Windows.Profiler
{
break;
}
subEventsMemoryTotal += sub.ManagedMemoryAllocation + e.NativeMemoryAllocation;
subEventsMemoryTotal += sub.ManagedMemoryAllocation + sub.NativeMemoryAllocation;
}
string name = e.Name.Replace("::", ".");