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:
parent
16833fb237
commit
59c188a18d
@ -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";
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user