From d9c811fc616b23cee6895d893e38c27984a54d41 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Thu, 2 Dec 2010 02:08:54 +0000 Subject: [PATCH] - Increase MAX_SKYBOX_PLANES to 1000. SVN r3016 (trunk) --- src/r_plane.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_plane.cpp b/src/r_plane.cpp index abf813fd7..eaa3d4b47 100644 --- a/src/r_plane.cpp +++ b/src/r_plane.cpp @@ -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