- removed r_columnmethod 1 because the code was broken and already gone from QZDoom.

This commit is contained in:
Christoph Oelckers 2017-01-10 22:28:15 +01:00
commit 11d93cb030
3 changed files with 2 additions and 10 deletions

View file

@ -435,7 +435,7 @@ namespace swrenderer
{
dc_colormap += fixedlightlev;
}
return r_columnmethod ? DoDraw1 : DoDraw0;
return DoDraw0;
}
fglevel = GetAlpha(style.SrcAlpha, alpha);
@ -468,7 +468,7 @@ namespace swrenderer
{
return DontDraw;
}
return r_columnmethod ? DoDraw1 : DoDraw0;
return DoDraw0;
}
ESPSResult R_SetPatchStyle(FRenderStyle style, float alpha, int translation, uint32_t color)