1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 03:56:10 +08:00

Updated MAX_EDICT_BITS constant (#25)

This commit is contained in:
Robin Gohmert
2016-05-16 23:17:56 +02:00
committed by Nicholas Hastings
parent d11fe2ea40
commit f4bfdec7a3

View File

@ -54,7 +54,7 @@
#define SP_MODEL_INDEX_BITS 13
// How many bits to use to encode an edict.
#define MAX_EDICT_BITS 11 // # of bits needed to represent max edicts
#define MAX_EDICT_BITS 12 // # of bits needed to represent max edicts
// Max # of edicts in a level
#define MAX_EDICTS (1<<MAX_EDICT_BITS)