From 9cfa630d4d377072190e50e8badd985a70ff5640 Mon Sep 17 00:00:00 2001 From: havoc Date: Mon, 30 Apr 2007 17:02:10 +0000 Subject: [PATCH] fix nettimesync bug after the recent cleanup git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7214 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl_parse.c b/cl_parse.c index fcd88f7d..4f943c57 100644 --- a/cl_parse.c +++ b/cl_parse.c @@ -2819,7 +2819,7 @@ static void CL_NetworkTimeReceived(double newtime) double timehigh; cl.mtime[1] = max(cl.mtime[0], newtime - 0.1); cl.mtime[0] = newtime; - if (cls.timedemo || (cl.islocalgame && !sv_fixedframeratesingleplayer.integer) || cl.mtime[0] == newtime || cls.signon < SIGNONS) + if (cls.timedemo || (cl.islocalgame && !sv_fixedframeratesingleplayer.integer) || cl.mtime[1] == cl.mtime[0] || cls.signon < SIGNONS) cl.time = cl.mtime[1] = newtime; else if (cls.protocol != PROTOCOL_QUAKEWORLD) { -- 2.39.2