From 44878ffc1783c19cedef196d85a79998ce794902 Mon Sep 17 00:00:00 2001 From: divverent Date: Wed, 23 Sep 2009 06:57:31 +0000 Subject: [PATCH] only skip input if time is actually increasing (should fix pause) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9223 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl_input.c b/cl_input.c index 99ed2551..abaca837 100644 --- a/cl_input.c +++ b/cl_input.c @@ -1700,7 +1700,7 @@ void CL_SendMove(void) packettime = 0; // do not send if we do not have anything useful to send - if(msecdelta <= 0 && cls.signon == SIGNONS && !cl.paused && cl.movevars_ticrate > 0) + if(msecdelta <= 0 && (cl.time > cl.oldtime) && cls.signon == SIGNONS && cl.movevars_ticrate > 0) return; // always send if buttons changed or an impulse is pending // even if it violates the rate limit! -- 2.39.2