Add missing separator.

This commit is contained in:
Bartosz Taudul
2026-05-11 23:23:34 +02:00
parent fe4c920794
commit ec6c2618ca

View File

@@ -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