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

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
+2 -2
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),