Fix MAX_EDICT_BITS for PVKII (Increased edict limit to 8,192 since 0.5.1.2) (#302)

Fix MAX_EDICT_BITS for PVKII (Increased edict limit to 8,192 since 0.5.1.2)
This commit is contained in:
PlayBoy31 2025-03-01 15:26:53 +01:00 committed by GitHub
parent adad62fe44
commit c4c1ef1252
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -62,7 +62,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 13 // # of bits needed to represent max edicts
// Max # of edicts in a level
#define MAX_EDICTS (1<<MAX_EDICT_BITS)