- For hardware 2D, apply fixed colormaps when copying to video memory instead

of doing it directly during the rendering, in order to improve visual
  fidelity for colormaps that aren't grayscale.


SVN r1866 (trunk)
This commit is contained in:
Randy Heit 2009-09-22 04:21:27 +00:00
commit d502655866
6 changed files with 37 additions and 8 deletions

View file

@ -1648,9 +1648,9 @@ void R_DrawPSprite (pspdef_t* psp, int pspnum, AActor *owner, fixed_t sx, fixed_
}
}
if (fixedcolormap != NULL)
if (realfixedcolormap != NULL)
{ // fixed color
vis->colormap = fixedcolormap;
vis->colormap = realfixedcolormap->Colormap;
}
else
{