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

Change client's polling rate for server startup to 200 ms

This commit is contained in:
Dydzio
2023-12-19 22:02:26 +01:00
parent f40e711721
commit 83c2c22a6d

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;