From 3a133946610332bec615f444fff75efaaecf14aa Mon Sep 17 00:00:00 2001 From: raa-eruanna Date: Thu, 13 Oct 2016 02:47:07 -0400 Subject: [PATCH] - Changed max sky buffer to 3072 from 2048 --- 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 d69e8a5c4b..c4d72b1a09 100644 --- a/src/r_plane.cpp +++ b/src/r_plane.cpp @@ -852,7 +852,7 @@ extern FTexture *rw_pic; // since the most anyone can ever see of the sky is 500 pixels. // We need 4 skybufs because wallscan can draw up to 4 columns at a time. // Need two versions - one for true color and one for palette -#define MAXSKYBUF 2048 +#define MAXSKYBUF 3072 static BYTE skybuf[4][512]; static uint32_t skybuf_bgra[MAXSKYBUF][512]; static DWORD lastskycol[4];