From 8eff098850f567a48c95a6c73751499a30f6b309 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Wed, 28 May 2025 04:30:08 +0200 Subject: [PATCH] Fix Linux build --- Source/Engine/Profiler/ProfilerMemory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Profiler/ProfilerMemory.cpp b/Source/Engine/Profiler/ProfilerMemory.cpp index 0aa2ba053..dc91dbc02 100644 --- a/Source/Engine/Profiler/ProfilerMemory.cpp +++ b/Source/Engine/Profiler/ProfilerMemory.cpp @@ -163,7 +163,7 @@ namespace uint32 bit = (uint32)(1 << ((int32)group & 31)); if ((GroupTracyPlotEnable[(int32)group / 32] & bit) == bit) { - TracyPlot(GroupNames[(int32)group].Ansi, GroupMemory[(int32)group]); + TracyPlot(GroupNames[(int32)group].Ansi, (int64_t)GroupMemory[(int32)group]); } } #else