mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
Fixed missing polyobjects in compatibility renderer
This commit is contained in:
parent
fc8eaab57b
commit
e6a7db99e4
1 changed files with 1 additions and 1 deletions
|
@ -484,7 +484,7 @@ bool GLWall::PutWallCompat(int passflag)
|
||||||
}
|
}
|
||||||
else if (sub)
|
else if (sub)
|
||||||
{
|
{
|
||||||
if (sub->lighthead != nullptr) return false;
|
if (sub->lighthead == nullptr) return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool foggy = !gl_isBlack(Colormap.FadeColor) || (level.flags&LEVEL_HASFADETABLE) || gl_lights_additive;
|
bool foggy = !gl_isBlack(Colormap.FadeColor) || (level.flags&LEVEL_HASFADETABLE) || gl_lights_additive;
|
||||||
|
|
Loading…
Reference in a new issue