Skip to content
Snippets Groups Projects
Commit 3ea03f96 authored by deuce's avatar deuce
Browse files

Reduce polling period to 250ms.

parent b7ae09ed
No related branches found
No related tags found
No related merge requests found
......@@ -238,7 +238,7 @@ function read_msg(sock)
while(sock.is_connected) {
if(logged_in)
update_data();
if (sock.poll(0.5))
if (sock.poll(0.25))
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment