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

Change broadcast rate from 5s to 3s.

This commit is contained in:
Bartosz Taudul
2019-06-17 19:57:17 +02:00
parent 6bf8081f5b
commit 11dc8e67e5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -319,7 +319,7 @@ int main( int argc, char** argv )
while( it != clients.end() )
{
const auto diff = t - it->second.time;
if( diff > 10000 ) // 10s
if( diff > 6000 ) // 6s
{
it = clients.erase( it );
}