From c12abcbe8b5fa0a527a3093d73c31492716b8d18 Mon Sep 17 00:00:00 2001 From: Andrey Nazarov Date: Thu, 27 Mar 2008 00:36:59 +0000 Subject: Changed some client side counters to unsigned type. --- source/cl_parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/cl_parse.c') diff --git a/source/cl_parse.c b/source/cl_parse.c index f00ffef..dbe62fe 100644 --- a/source/cl_parse.c +++ b/source/cl_parse.c @@ -1219,8 +1219,8 @@ static void CL_ParseReconnect( void ) { CL_ClearState(); cls.state = ca_challenging; - cls.connect_time = -99999; // CL_CheckForResend() will fire immediately - cls.connectCount = 0; + cls.connect_time = cls.realtime - CONNECT_DELAY; + cls.connect_count = 0; } #if USE_AUTOREPLY -- cgit v1.2.3