mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- fixed: The check for explicitly not splitting wall polygons at seg vertices was inverted.
This commit is contained in:
parent
e7cd5ec2bb
commit
1261046f1a
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ void GLWall::RenderWall(int textured)
|
|||
gl_RenderState.ApplyLightIndex(dynlightindex);
|
||||
if (gl.buffermethod != BM_DEFERRED)
|
||||
{
|
||||
MakeVertices(!(textured&RWF_NOSPLIT));
|
||||
MakeVertices(!!(textured&RWF_NOSPLIT));
|
||||
}
|
||||
else if (vertcount == 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue