1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Invalid callstack is 0, not UINT64_MAX.

This commit is contained in:
Bartosz Taudul 2018-07-22 00:13:11 +02:00
parent 16833fb237
commit 59c188a18d

View File

@ -4349,7 +4349,7 @@ void View::DrawFindZone()
hdrString = v->first == std::numeric_limits<uint64_t>::max() ? "No user text" : m_worker.GetString( StringIdx( v->first ) );
break;
case FindZone::GroupBy::Callstack:
if( v->first == std::numeric_limits<uint64_t>::max() )
if( v->first == 0 )
{
hdrString = "No callstack";
}