- draw wall sprites without translucent pixels as opaque. This looses the border smoothing with texture filtering but avoids sorting problems.

This commit is contained in:
Christoph Oelckers 2016-09-10 12:24:13 +02:00
parent 30cb651d92
commit d3246be488
1 changed files with 1 additions and 1 deletions

View File

@ -437,7 +437,7 @@ inline void GLSprite::PutSprite(bool translucent)
{ {
int list; int list;
// [BB] Allow models to be drawn in the GLDL_TRANSLUCENT pass. // [BB] Allow models to be drawn in the GLDL_TRANSLUCENT pass.
if (translucent || !modelframe) if (translucent || (!modelframe && (actor->renderflags & RF_SPRITETYPEMASK) != RF_WALLSPRITE))
{ {
list = GLDL_TRANSLUCENT; list = GLDL_TRANSLUCENT;
} }