mirror of
https://github.com/wolfpld/tracy
synced 2025-04-30 20:53:52 +00:00
Display zone values also in hex
This commit is contained in:
parent
759b4c3bfe
commit
8f25eaf54e
@ -5309,7 +5309,7 @@ void Worker::ProcessZoneColor( const QueueZoneColor& ev )
|
|||||||
void Worker::ProcessZoneValue( const QueueZoneValue& ev )
|
void Worker::ProcessZoneValue( const QueueZoneValue& ev )
|
||||||
{
|
{
|
||||||
char tmp[32];
|
char tmp[32];
|
||||||
const auto tsz = sprintf( tmp, "%" PRIu64, ev.value );
|
const auto tsz = sprintf( tmp, "%" PRIu64 " [0x%" PRIx64 "]", ev.value, ev.value );
|
||||||
|
|
||||||
auto td = RetrieveThread( m_threadCtx );
|
auto td = RetrieveThread( m_threadCtx );
|
||||||
if( !td )
|
if( !td )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user