diff options
author | Tim Angus <tim@ngus.net> | 2006-04-16 14:49:40 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2006-04-16 14:49:40 +0000 |
commit | 44dfc684669756cf8a05e74e47a45649fa163cab (patch) | |
tree | f054d29d7f1b1d981f4f4c9ff1f65bc07c8a15a9 | |
parent | 525fb5b52b32452bb7d328934ba59c276aec88f2 (diff) |
* Doubled MAX_RELIABLE_COMMANDS constant to hopefully reduce on connection
command overflows
-rw-r--r-- | src/qcommon/qcommon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/qcommon.h b/src/qcommon/qcommon.h index e6ae0587..96d6e517 100644 --- a/src/qcommon/qcommon.h +++ b/src/qcommon/qcommon.h @@ -130,7 +130,7 @@ NET #define PORT_ANY -1 -#define MAX_RELIABLE_COMMANDS 64 // max string commands buffered for restransmit +#define MAX_RELIABLE_COMMANDS 128 // max string commands buffered for restransmit typedef enum { NA_BOT, |