summaryrefslogtreecommitdiff
path: root/source/cl_parse.c
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2008-03-27 00:36:59 +0000
committerAndrey Nazarov <skuller@skuller.net>2008-03-27 00:36:59 +0000
commitc12abcbe8b5fa0a527a3093d73c31492716b8d18 (patch)
treecb6099697777911bb20d0cbce2528c3d9e757bdf /source/cl_parse.c
parent1d6c2a5a41bb463e79c8f9d988603395f25d21e8 (diff)
Changed some client side counters to unsigned type.
Diffstat (limited to 'source/cl_parse.c')
-rw-r--r--source/cl_parse.c4
1 files changed, 2 insertions, 2 deletions
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