mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-23 12:32:34 +00:00
- Fix clearfog crash
This commit is contained in:
parent
f65c651ffd
commit
8af76b96d8
1 changed files with 8 additions and 7 deletions
|
@ -126,6 +126,7 @@ namespace swrenderer
|
||||||
bool wrap = (curline->linedef->flags & ML_WRAP_MIDTEX) || (curline->sidedef->Flags & WALLF_WRAP_MIDTEX);
|
bool wrap = (curline->linedef->flags & ML_WRAP_MIDTEX) || (curline->sidedef->Flags & WALLF_WRAP_MIDTEX);
|
||||||
|
|
||||||
// [RH] Draw fog partition
|
// [RH] Draw fog partition
|
||||||
|
bool renderwall = true;
|
||||||
bool notrelevant = false;
|
bool notrelevant = false;
|
||||||
if (ds->bFogBoundary)
|
if (ds->bFogBoundary)
|
||||||
{
|
{
|
||||||
|
@ -135,17 +136,17 @@ namespace swrenderer
|
||||||
RenderFogBoundary renderfog;
|
RenderFogBoundary renderfog;
|
||||||
renderfog.Render(Thread, x1, x2, mceilingclip, mfloorclip, wallshade, rw_light, rw_lightstep, basecolormap);
|
renderfog.Render(Thread, x1, x2, mceilingclip, mfloorclip, wallshade, rw_light, rw_lightstep, basecolormap);
|
||||||
|
|
||||||
if (!ds->maskedtexturecol)
|
if (ds->maskedtexturecol == nullptr)
|
||||||
{
|
renderwall = false;
|
||||||
if (!(ds->bFakeBoundary && !(ds->bFakeBoundary & 4)) || visible)
|
|
||||||
notrelevant = RenderWall(ds, x1, x2, walldrawerargs, columndrawerargs, visible, basecolormap, wallshade, wrap);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else if (!(ds->bFakeBoundary && !(ds->bFakeBoundary & 4)) || visible)
|
else if ((ds->bFakeBoundary && !(ds->bFakeBoundary & 4)) || !visible)
|
||||||
{
|
{
|
||||||
notrelevant = RenderWall(ds, x1, x2, walldrawerargs, columndrawerargs, visible, basecolormap, wallshade, wrap);
|
renderwall = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (renderwall)
|
||||||
|
notrelevant = RenderWall(ds, x1, x2, walldrawerargs, columndrawerargs, visible, basecolormap, wallshade, wrap);
|
||||||
|
|
||||||
if (ds->bFakeBoundary & 3)
|
if (ds->bFakeBoundary & 3)
|
||||||
{
|
{
|
||||||
RenderFakeWallRange(ds, x1, x2, wallshade);
|
RenderFakeWallRange(ds, x1, x2, wallshade);
|
||||||
|
|
Loading…
Reference in a new issue