mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
Fix SkyViewpoint skyboxes not being rendered
This commit is contained in:
parent
d6b3cbe0c9
commit
657abb374b
1 changed files with 1 additions and 1 deletions
|
@ -1314,7 +1314,7 @@ void R_DrawPortals ()
|
|||
vissprite_p = firstvissprite;
|
||||
|
||||
visplaneStack.Pop (pl);
|
||||
if (pl->Alpha > 0)
|
||||
if (pl->Alpha > 0 && pl->picnum != skyflatnum)
|
||||
{
|
||||
R_DrawSinglePlane (pl, pl->Alpha, pl->Additive, true);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue