diff options
author | Roman Tetelman <kevlarman@gmail.com> | 2009-10-03 12:40:20 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:08 +0000 |
commit | b7ada862f67907dd012528ba9fecc4b7e4d7281f (patch) | |
tree | 9c404b6370b9758d5db1207c3e3314ca38ddc3e2 /src/qcommon | |
parent | 8669691825a019653614f16573f0b5aad329df2e (diff) |
* make zap display targets beyond 3 and general zap cleanup
* Remove version determining code from makefile since it has to walk 300
revisions every compile and produces incorrect results anyway
Diffstat (limited to 'src/qcommon')
-rw-r--r-- | src/qcommon/q_shared.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qcommon/q_shared.h b/src/qcommon/q_shared.h index c24fe292..5b5daee8 100644 --- a/src/qcommon/q_shared.h +++ b/src/qcommon/q_shared.h @@ -1006,6 +1006,8 @@ typedef enum { #define GENTITYNUM_BITS 10 // don't need to send any more #define MAX_GENTITIES (1<<GENTITYNUM_BITS) +#define GENTITYNUM_MASK (MAX_GENTITIES - 1) +#define MAX_GENTITYNUM_PACK 10 // entitynums are communicated with GENTITY_BITS, so any reserved // values that are going to be communcated over the net need to |