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

Don't hardcode broadcast port.

This commit is contained in:
Bartosz Taudul
2019-06-17 18:37:34 +02:00
parent 1b3b3a94a2
commit de058d2a0d
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1152,7 +1152,7 @@ void Profiler::Worker()
if( t - m_lastBroadcast > 5000000000 ) // 5s
{
m_lastBroadcast = t;
m_broadcast->Send( broadcastMsg, broadcastLen );
m_broadcast->Send( 8087, broadcastMsg, broadcastLen );
auto err = WSAGetLastError();
}
}