1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-29 21:56:54 +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
commit b73300571a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;