0
0
mirror of https://github.com/wolfpld/tracy.git synced 2026-01-18 17:11:26 +01:00

Display sys call names.

This commit is contained in:
Bartosz Taudul
2019-10-27 18:34:35 +01:00
parent 154a3ead5f
commit 0ee42a723a

View File

@@ -4443,7 +4443,7 @@ int View::DrawSysCalls( const Vector<SysCall>& vec, bool hover, double pxns, int
}
else
{
const auto name = "???";
const auto name = m_worker.GetCodeLocationName( it->ptr );
const auto tsz = ImGui::CalcTextSize( name );
const auto pr0 = ( it->start - m_vd.zvStart ) * pxns;