mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
Merge pull request #385 from starmole/master
Add lower case e and b tags
This commit is contained in:
commit
de312c6cc7
@ -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