mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 15:21:35 +00:00
The server should still process network packages for keeping the package queue empty.
This commit is contained in:
parent
ee12260b59
commit
4450057eb7
1 changed files with 1 additions and 1 deletions
|
@ -662,7 +662,7 @@ void NET_Sleep(int msec)
|
||||||
FD_SET(0, &fdset); // stdin is processed too
|
FD_SET(0, &fdset); // stdin is processed too
|
||||||
highestfd = 1;
|
highestfd = 1;
|
||||||
}
|
}
|
||||||
if(ip_socket && com_sv_running->integer)
|
if(ip_socket)
|
||||||
{
|
{
|
||||||
FD_SET(ip_socket, &fdset); // network socket
|
FD_SET(ip_socket, &fdset); // network socket
|
||||||
if(ip_socket >= highestfd)
|
if(ip_socket >= highestfd)
|
||||||
|
|
Loading…
Reference in a new issue