This commit is contained in:
Rachael Alexanderson 2017-02-07 18:40:09 -05:00
commit 6187c3734e
1 changed files with 2 additions and 2 deletions

View File

@ -387,7 +387,7 @@ namespace swrenderer
if (style.BlendOp == STYLEOP_Shadow) if (style.BlendOp == STYLEOP_Shadow)
{ {
style = LegacyRenderStyles[STYLE_TranslucentStencil]; style = LegacyRenderStyles[STYLE_TranslucentStencil];
alpha = TRANSLUC33; alpha = OPAQUE / 3;
color = 0; color = 0;
} }
@ -401,7 +401,7 @@ namespace swrenderer
} }
else if (style.Flags & STYLEF_Alpha1) else if (style.Flags & STYLEF_Alpha1)
{ {
alpha = FRACUNIT; alpha = OPAQUE;
} }
else else
{ {