mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-05 01:11:25 +00:00
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:
parent
e24c6fa4db
commit
74594e4c34
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue