diff options
author | Simon Howard | 2006-02-19 13:38:59 +0000 |
---|---|---|
committer | Simon Howard | 2006-02-19 13:38:59 +0000 |
commit | 76d69779c9bcebec6a2188d6b9e2483240e26a8a (patch) | |
tree | 417033d79fb825bf28a7dfb9b6b8365b3c5f7710 | |
parent | a9bd7a80dd6977c8092a534b2f655c6bb3d7926f (diff) | |
download | chocolate-doom-76d69779c9bcebec6a2188d6b9e2483240e26a8a.tar.gz chocolate-doom-76d69779c9bcebec6a2188d6b9e2483240e26a8a.tar.bz2 chocolate-doom-76d69779c9bcebec6a2188d6b9e2483240e26a8a.zip |
Increase the size of BACKUPTICS to deal with heavy lag
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 373
-rw-r--r-- | src/d_net.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/d_net.h b/src/d_net.h index 07f4e59a..e58f6b48 100644 --- a/src/d_net.h +++ b/src/d_net.h @@ -1,7 +1,7 @@ // Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // -// $Id: d_net.h 323 2006-01-22 22:29:42Z fraggle $ +// $Id: d_net.h 373 2006-02-19 13:38:59Z fraggle $ // // Copyright(C) 1993-1996 Id Software, Inc. // Copyright(C) 2005 Simon Howard @@ -50,7 +50,7 @@ // Networking and tick handling related. -#define BACKUPTICS 12 +#define BACKUPTICS 128 typedef enum { @@ -149,6 +149,9 @@ void TryRunTics (void); //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.5 2006/02/19 13:38:59 fraggle +// Increase the size of BACKUPTICS to deal with heavy lag +// // Revision 1.4 2006/01/22 22:29:42 fraggle // Periodically request the time from clients to estimate their offset to // the server time. |