- Increase MAX_SKYBOX_PLANES to 1000.

SVN r3016 (trunk)
This commit is contained in:
Randy Heit 2010-12-02 02:08:54 +00:00
parent 86516ecfac
commit d9c811fc61
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ planefunction_t ceilingfunc;
#define MAXVISPLANES 128 /* must be a power of 2 */
// 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.
static visplane_t *visplanes[MAXVISPLANES+1]; // killough