Fixed SVC_BspDecal reading an incorrect number of bits.

This commit is contained in:
Jordan Cristiano 2017-05-27 19:17:46 -04:00
parent 6912d26add
commit b199c71ef0
1 changed files with 4 additions and 1 deletions

View File

@ -21,7 +21,10 @@ enum constants
// Max # of edicts in a level
MAX_EDICTS = (1 << MAX_EDICT_BITS),
MAX_DECAL_INDEX_BITS = 9,
SP_MODEL_INDEX_BITS = 11,
SP_MODEL_INDEX_BITS_OLD = 11,
SP_MODEL_INDEX_BITS = 13,
MAX_SERVER_CLASS_BITS = 9,
MAX_EVENT_NAME_LENGTH = 32,