mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
- Build: Change MAXSPRITESONSCREEN
from constant of 2560 to 1/4 of MAXSPRITES.
* Mods like Blood's Eviction are pushing these limits hard. Bumping the onscreen limit resolved recurring crash on `sstation.map` with no apparent ill-effects.
This commit is contained in:
parent
ffe62da3c7
commit
4298399e00
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ enum
|
|||
MAXSTATUS = 1024,
|
||||
// Maximum number of component tiles in a multi-psky:
|
||||
MAXPSKYTILES = 16,
|
||||
MAXSPRITESONSCREEN = 2560,
|
||||
MAXSPRITESONSCREEN = MAXSPRITES >> 2,
|
||||
MAXUNIQHUDID = 256, //Extra slots so HUD models can store animation state without messing game sprites
|
||||
|
||||
TSPR_TEMP = 99,
|
||||
|
|
Loading…
Reference in a new issue