1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

Merge pull request #3350 from dydzio0614/server-polling-change

Change client's polling rate for server startup
This commit is contained in:
Ivan Savenko
2023-12-20 16:29:06 +02:00
committed by GitHub

View File

@@ -414,7 +414,7 @@ int main(int argc, char * argv[])
else
{
while(true)
boost::this_thread::sleep_for(boost::chrono::milliseconds(1000));
boost::this_thread::sleep_for(boost::chrono::milliseconds(200));
}
return 0;