mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
add lower case e and b tags
This commit is contained in:
parent
8bf21bfb81
commit
1efee40100
@ -218,7 +218,7 @@ int main( int argc, char** argv )
|
||||
}
|
||||
}
|
||||
|
||||
if( type == "B" )
|
||||
if( type == "b" || type == "B" )
|
||||
{
|
||||
timeline.emplace_back( tracy::Worker::ImportEventTimeline {
|
||||
getPseudoTid(v),
|
||||
@ -230,7 +230,7 @@ int main( int argc, char** argv )
|
||||
locLine
|
||||
} );
|
||||
}
|
||||
else if( type == "E" )
|
||||
else if( type == "e" || type == "E" )
|
||||
{
|
||||
timeline.emplace_back( tracy::Worker::ImportEventTimeline {
|
||||
getPseudoTid(v),
|
||||
|
Loading…
Reference in New Issue
Block a user