mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-06 13:46:08 +00:00
Fix blendmode regression in OpenGL caused by faulty fog wall support
This commit is contained in:
parent
f16c1cd95f
commit
82c9abfc58
1 changed files with 2 additions and 2 deletions
|
|
@ -1419,13 +1419,13 @@ static void HWR_ProcessSeg(void) // Sort of like GLWall::Process in GZDoom
|
|||
case 221:
|
||||
case 253:
|
||||
case 256:
|
||||
if (gl_linedef->blendmode != AST_FOG)
|
||||
if (gl_linedef->blendmode && gl_linedef->blendmode != AST_FOG)
|
||||
blendmode = HWR_SurfaceBlend(gl_linedef->blendmode, R_GetLinedefTransTable(gl_linedef->alpha), &Surf);
|
||||
else
|
||||
blendmode = PF_Translucent;
|
||||
break;
|
||||
default:
|
||||
if (gl_linedef->blendmode != AST_FOG)
|
||||
if (gl_linedef->blendmode && gl_linedef->blendmode != AST_FOG)
|
||||
{
|
||||
if (gl_linedef->alpha >= 0 && gl_linedef->alpha < FRACUNIT)
|
||||
blendmode = HWR_SurfaceBlend(gl_linedef->blendmode, R_GetLinedefTransTable(gl_linedef->alpha), &Surf);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue