From d5daa8ee842e4e60d7b5ace5a75b519ce668ae6a Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 4 Jan 2022 17:16:34 +0100 Subject: [PATCH] - fixed: The bunch drawer's gotwall array was cleared before resizing. This means that on the first frame of a new map it'd operate on partially uninitialized data. --- source/core/rendering/scene/hw_bunchdrawer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/rendering/scene/hw_bunchdrawer.cpp b/source/core/rendering/scene/hw_bunchdrawer.cpp index 8158be533..6034113d1 100644 --- a/source/core/rendering/scene/hw_bunchdrawer.cpp +++ b/source/core/rendering/scene/hw_bunchdrawer.cpp @@ -76,7 +76,6 @@ void BunchDrawer::Init(HWDrawInfo *_di, Clipper* c, vec2_t& view, binangle a1, b } memset(sectionstartang.Data(), -1, sectionstartang.Size() * sizeof(sectionstartang[0])); memset(sectionendang.Data(), -1, sectionendang.Size() * sizeof(sectionendang[0])); - gotwall.Resize(wall.Size()); //blockwall.Resize(wall.Size()); } @@ -97,6 +96,7 @@ void BunchDrawer::StartScene() gotsector.Zero(); gotsection2.Resize(numsections); gotsection2.Zero(); + gotwall.Resize(wall.Size()); gotwall.Zero(); sectionstartang.Resize(numsections); sectionendang.Resize(numsections);