mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- Removed redundant expression in R_FindPlane.
This commit is contained in:
parent
7af8b78b9f
commit
ebcd0e9c49
1 changed files with 1 additions and 2 deletions
|
@ -607,8 +607,7 @@ visplane_t *R_FindPlane (const secplane_t &height, FTextureID picnum, int lightl
|
|||
// same visplane, then only the floor sky will be drawn.
|
||||
plane.c = height.c;
|
||||
plane.ic = height.ic;
|
||||
isskybox = skybox != NULL && !skybox->bInSkybox &&
|
||||
(skybox->bAlways || picnum == skyflatnum);
|
||||
isskybox = skybox != NULL && !skybox->bInSkybox;
|
||||
}
|
||||
else if (skybox != NULL && skybox->bAlways && !skybox->bInSkybox)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue