mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- Increase MAX_SKYBOX_PLANES to 1000.
SVN r3016 (trunk)
This commit is contained in:
parent
86516ecfac
commit
d9c811fc61
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ planefunction_t ceilingfunc;
|
||||||
#define MAXVISPLANES 128 /* must be a power of 2 */
|
#define MAXVISPLANES 128 /* must be a power of 2 */
|
||||||
|
|
||||||
// Avoid infinite recursion with stacked sectors by limiting them.
|
// Avoid infinite recursion with stacked sectors by limiting them.
|
||||||
#define MAX_SKYBOX_PLANES 100
|
#define MAX_SKYBOX_PLANES 1000
|
||||||
|
|
||||||
// [RH] Allocate one extra for sky box planes.
|
// [RH] Allocate one extra for sky box planes.
|
||||||
static visplane_t *visplanes[MAXVISPLANES+1]; // killough
|
static visplane_t *visplanes[MAXVISPLANES+1]; // killough
|
||||||
|
|
Loading…
Reference in a new issue