From cffad14419b2008f44456d0e9eb5676dde9d6c55 Mon Sep 17 00:00:00 2001 From: Spoike Date: Fri, 26 Jul 2013 17:40:06 +0000 Subject: [PATCH] yay minimal git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4428 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/cl_parse.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/engine/client/cl_parse.c b/engine/client/cl_parse.c index 8310eac27..0949c37c8 100644 --- a/engine/client/cl_parse.c +++ b/engine/client/cl_parse.c @@ -3982,9 +3982,16 @@ void CL_ParseClientdata (void) oldparsecountmod = parsecountmod; i = cls.netchan.incoming_acknowledged; +#ifdef NQPROT if (cls.demoplayback == DPB_NETQUAKE) + { i = cls.netchan.incoming_sequence-1; - if (cls.demoplayback == DPB_NETQUAKE || cls.demoplayback == DPB_MVD || cls.demoplayback == DPB_EZTV) + cl.oldparsecount = i - 1; + oldparsecountmod = cl.oldparsecount & UPDATE_MASK; + } + else +#endif + if (cls.demoplayback == DPB_MVD || cls.demoplayback == DPB_EZTV) { cl.oldparsecount = i - 1; oldparsecountmod = cl.oldparsecount & UPDATE_MASK;