mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
allow the server to run when there's no input
This commit is contained in:
parent
589c3e4e49
commit
ce44d350b7
1 changed files with 1 additions and 2 deletions
|
@ -142,8 +142,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