From 1d1a4230e6422b56c77f5bb602c887c7296b63e2 Mon Sep 17 00:00:00 2001 From: mattiasgustavsson Date: Thu, 7 Mar 2024 11:40:42 +0100 Subject: [PATCH] Increase max visplanes (to support more WADs) --- linuxdoom-1.10/r_plane.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linuxdoom-1.10/r_plane.c b/linuxdoom-1.10/r_plane.c index f6ac8e2..f0206cb 100644 --- a/linuxdoom-1.10/r_plane.c +++ b/linuxdoom-1.10/r_plane.c @@ -49,7 +49,7 @@ planefunction_t ceilingfunc; // // Here comes the obnoxious "visplane". -#define MAXVISPLANES 128 +#define MAXVISPLANES 1024 visplane_t visplanes[MAXVISPLANES]; visplane_t* lastvisplane; visplane_t* floorplane;