Increase Mobj Freeslot limit to 1024 from 512

This commit is contained in:
Ashnal 2021-09-04 23:00:55 -04:00 committed by toaster
parent 3887a47dc3
commit 243bc67e5b

View file

@ -567,7 +567,7 @@ void A_InvincSparkleRotate();
extern boolean actionsoverridden[NUMACTIONS];
// ratio of states to sprites to mobj types is roughly 6 : 1 : 1
#define NUMMOBJFREESLOTS 512
#define NUMMOBJFREESLOTS 1024
#define NUMSPRITEFREESLOTS NUMMOBJFREESLOTS
#define NUMSTATEFREESLOTS (NUMMOBJFREESLOTS*8)