mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
make sure the rest of the server gets to run even if there's no network
input (though I fixed this for windows too)
This commit is contained in:
parent
e160ead563
commit
4260f55759
1 changed files with 1 additions and 2 deletions
|
@ -110,8 +110,7 @@ main (int argc, const char **argv)
|
|||
// main loop
|
||||
oldtime = Sys_DoubleTime () - 0.1;
|
||||
while (1) {
|
||||
if (!Sys_CheckInput (!svs.num_clients, net_socket))
|
||||
continue;
|
||||
Sys_CheckInput (!svs.num_clients, net_socket);
|
||||
|
||||
// find time passed since last cycle
|
||||
newtime = Sys_DoubleTime ();
|
||||
|
|
Loading…
Reference in a new issue