mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
Implement automated connection to a given IP address.
This commit is contained in:
parent
8c5670489c
commit
6fefffe8a5
@ -85,6 +85,10 @@ int main( int argc, char** argv )
|
||||
view = std::make_unique<tracy::View>( *f );
|
||||
}
|
||||
}
|
||||
else if( argc == 3 && strcmp( argv[1], "-a" ) == 0 )
|
||||
{
|
||||
view = std::make_unique<tracy::View>( argv[2] );
|
||||
}
|
||||
|
||||
char title[128];
|
||||
sprintf( title, "Tracy server %i.%i.%i", tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch );
|
||||
|
Loading…
Reference in New Issue
Block a user