diff options
author | Zack Middleton <zturtleman@gmail.com> | 2013-02-11 15:49:47 -0600 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-02-16 21:54:31 +0000 |
commit | 349e97bc5dc208123d9e48224d3c577723ef58df (patch) | |
tree | 32a148dc74e51e6371c78309b6f7135741efb5dc /src/client | |
parent | 9b78065a40eded80b4aaf2e3b9e4fb0097093787 (diff) |
Unify/cleanup max snapshot entities on client and server
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/client.h b/src/client/client.h index bd50fbb6..f3d52a24 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -88,7 +88,7 @@ typedef struct { // the parseEntities array must be large enough to hold PACKET_BACKUP frames of // entities, so that when a delta compressed message arives from the server // it can be un-deltad from the original -#define MAX_PARSE_ENTITIES 2048 +#define MAX_PARSE_ENTITIES ( PACKET_BACKUP * MAX_SNAPSHOT_ENTITIES ) extern int g_console_field_width; |