From: havoc Date: Mon, 16 Apr 2007 13:37:42 +0000 (+0000) Subject: server no longer calls networking on each physics frame (since sv.datagram X-Git-Tag: xonotic-v0.1.0preview~3320 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=a97ec7093619b8bba984d053b6a2e9036538c96b;p=xonotic%2Fdarkplaces.git server no longer calls networking on each physics frame (since sv.datagram is no longer important) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7110 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/host.c b/host.c index 6d1788a9..455f55d5 100644 --- a/host.c +++ b/host.c @@ -731,14 +731,14 @@ void Host_Main(void) if (sv.frametime) SV_Physics(); - // send all messages to the clients - SV_SendClientMessages(); - // if this server frame took too long, break out of the loop if (framelimit > 1 && Sys_DoubleTime() >= aborttime) break; } + // send all messages to the clients + SV_SendClientMessages(); + // end the server VM frame SV_VM_End();