Merge pull request #385 from starmole/master

Add lower case e and b tags
This commit is contained in:
Bartosz Taudul 2022-05-04 21:56:45 +02:00 committed by GitHub
commit de312c6cc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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),