2
0
mirror of https://github.com/wolfpld/tracy synced 2026-02-21 03:32:26 +00:00

Use the same port (8086) for both TCP and UDP traffic.

This commit is contained in:
Bartosz Taudul
2019-06-18 20:28:03 +02:00
parent 0e5a7263d9
commit aa5259b20a
2 changed files with 3 additions and 3 deletions

View File

@@ -283,7 +283,7 @@ int main( int argc, char** argv )
if( !broadcastListen )
{
broadcastListen = new tracy::UdpListen();
if( !broadcastListen->Listen( 8087 ) )
if( !broadcastListen->Listen( 8086 ) )
{
delete broadcastListen;
broadcastListen = nullptr;