Increase Mobj Freeslot limit to 1024 from 512

This commit is contained in:
Ashnal 2021-09-04 23:00:55 -04:00
parent c8cec767d5
commit d303f1b203
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ void A_NapalmScatter();
void A_SpawnFreshCopy();
// 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)