From bf9ed39ec3ba4d236551a38ea9f00505dc4eb55f Mon Sep 17 00:00:00 2001 From: Jaime Passos Date: Thu, 15 Oct 2020 14:05:18 -0300 Subject: [PATCH] Change vis->transmap statement --- src/r_things.c | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/src/r_things.c b/src/r_things.c index 266fc28ef..444b671d2 100644 --- a/src/r_things.c +++ b/src/r_things.c @@ -2007,24 +2007,19 @@ static void R_ProjectSprite(mobj_t *thing) vis->scale += FixedMul(scalestep, spriteyscale) * (vis->x1 - x1); } - vis->patch = patch; - -// -// determine the colormap (lightlevel & special effects) -// - vis->transmap = NULL; - - // specific translucency - if (!cv_translucency.value) - ; // no translucency - else if (trans) + if (cv_translucency.value && trans) vis->transmap = transtables + ((trans-1)<transmap = NULL; if (R_ThingIsFullBright(oldthing) || oldthing->flags2 & MF2_SHADOW || thing->flags2 & MF2_SHADOW) vis->cut |= SC_FULLBRIGHT; else if (R_ThingIsFullDark(oldthing)) vis->cut |= SC_FULLDARK; + // + // determine the colormap (lightlevel & special effects) + // if (vis->cut & SC_FULLBRIGHT && (!vis->extra_colormap || !(vis->extra_colormap->flags & CMF_FADEFULLBRIGHTSPRITES))) { @@ -2049,6 +2044,8 @@ static void R_ProjectSprite(mobj_t *thing) if (splat) vis->cut |= SC_SPLAT; // I like ya cut g + vis->patch = patch; + if (thing->subsector->sector->numlights && !(shadowdraw || splat)) R_SplitSprite(vis);