From ec6c2618cafdb52ed227abb1244fac8a0b2a64e5 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 11 May 2026 23:23:34 +0200 Subject: [PATCH] Add missing separator. --- profiler/src/profiler/TracyDisassembly.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/profiler/TracyDisassembly.cpp b/profiler/src/profiler/TracyDisassembly.cpp index d673961c..59d1ce12 100644 --- a/profiler/src/profiler/TracyDisassembly.cpp +++ b/profiler/src/profiler/TracyDisassembly.cpp @@ -639,7 +639,7 @@ std::string FormatDisassemblyLine( const AsmLine& opcode, Worker& worker, std::v } if( stat.ext != 0 ) { - snprintf( buf, sizeof(buf), "%.4f%%", 100.0f * stat.ext / totalCost ); + snprintf( buf, sizeof(buf), "%.4f%%:", 100.0f * stat.ext / totalCost ); line += buf; } else