- fixed the translucent wall splitter, it forgot to copy the original wall before making adjustments to it and its copy.

This commit is contained in:
Christoph Oelckers 2018-04-15 17:04:02 +02:00
parent 21c2d38342
commit d17216d7dd

View file

@ -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;