From 84faeab78cc37a17bd009d784031602eb8d51932 Mon Sep 17 00:00:00 2001 From: divverent Date: Thu, 10 Oct 2013 16:53:28 +0000 Subject: [PATCH] sv_checkforpacketsduringsleep: perform a netconn master server frame immediately. Fixes ping view in server browser. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12019 d7cf8633-e32d-0410-b094-e92efae38249 --- host.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/host.c b/host.c index 0f19632a..7e7bc56a 100644 --- a/host.c +++ b/host.c @@ -804,8 +804,12 @@ void Host_Main(void) wait = 1; // because we cast to int time0 = Sys_DirtyTime(); - if (sv_checkforpacketsduringsleep.integer && !sys_usenoclockbutbenchmark.integer && !svs.threaded) + if (sv_checkforpacketsduringsleep.integer && !sys_usenoclockbutbenchmark.integer && !svs.threaded) { NetConn_SleepMicroseconds((int)wait); + if (cls.state != ca_dedicated) + NetConn_ClientFrame(); // helps server browser get good ping values + // TODO can we do the same for ServerFrame? Probably not. + } else Sys_Sleep((int)wait); delta = Sys_DirtyTime() - time0; -- 2.39.2