Remove bitwise opeartion on bool

Visual Studio compiler was giving the warning:
`warning C4805: '|=': unsafe mix of type 'bool' and type 'int' in operation`
This commit is contained in:
dileepvr 2025-03-08 07:33:58 -07:00 committed by Ricardo Luís Vaz Silva
parent e24c6fa4db
commit 74594e4c34

View file

@ -85,7 +85,7 @@ void HWWall::RenderWall(FRenderState &state, int textured)
{
bool ditherT = (type == RENDERWALL_BOTTOM) && (seg->sidedef->Flags & WALLF_DITHERTRANS_BOTTOM);
ditherT |= (type == RENDERWALL_TOP) && (seg->sidedef->Flags & WALLF_DITHERTRANS_TOP);
ditherT |= seg->sidedef->Flags & WALLF_DITHERTRANS_MID;
ditherT = ditherT || (seg->sidedef->Flags & WALLF_DITHERTRANS_MID);
if (ditherT)
{
state.SetEffect(EFF_DITHERTRANS);