From d17216d7dd4fd67829edbdb512f28bf153846ea0 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 15 Apr 2018 17:04:02 +0200 Subject: [PATCH] - fixed the translucent wall splitter, it forgot to copy the original wall before making adjustments to it and its copy. --- src/gl/scene/gl_drawinfo.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gl/scene/gl_drawinfo.cpp b/src/gl/scene/gl_drawinfo.cpp index 671252baac..c67c794682 100644 --- a/src/gl/scene/gl_drawinfo.cpp +++ b/src/gl/scene/gl_drawinfo.cpp @@ -464,6 +464,7 @@ void GLDrawList::SortWallIntoWall(SortNode * head,SortNode * sort) ws->vertcount = 0; // invalidate current vertices. GLWall *w= NewWall(); + *w = *ws; w->glseg.x1=ws->glseg.x2=ix; w->glseg.y1=ws->glseg.y2=iy;