mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-30 19:52:43 +00:00
Fix gl_linedef renaming which went off radars on the udmf branch
This commit is contained in:
parent
3d90a6aebe
commit
69cdd00be6
1 changed files with 2 additions and 2 deletions
|
|
@ -1466,8 +1466,8 @@ static void HWR_ProcessSeg(void) // Sort of like GLWall::Process in GZDoom
|
|||
blendmode = PF_Translucent;
|
||||
break;
|
||||
default:
|
||||
if (gr_linedef->alpha >= 0 && gr_linedef->alpha < FRACUNIT)
|
||||
blendmode = HWR_TranstableToAlpha(R_GetLinedefTransTable(gr_linedef->alpha), &Surf);
|
||||
if (gl_linedef->alpha >= 0 && gl_linedef->alpha < FRACUNIT)
|
||||
blendmode = HWR_TranstableToAlpha(R_GetLinedefTransTable(gl_linedef->alpha), &Surf);
|
||||
else
|
||||
blendmode = PF_Masked;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue