mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- Blood: fixed application of palette from the QAV data for HUD weapons.
This commit is contained in:
parent
1e63341c4d
commit
64607834f3
1 changed files with 1 additions and 1 deletions
|
@ -51,6 +51,7 @@ void DrawFrame(double x, double y, TILE_FRAME *pTile, int stat, int shade, int p
|
|||
stat |= pTile->stat;
|
||||
x += pTile->x;
|
||||
y += pTile->y;
|
||||
if (palnum <= 0) palnum = pTile->palnum;
|
||||
|
||||
if (!to3dview)
|
||||
{
|
||||
|
@ -60,7 +61,6 @@ void DrawFrame(double x, double y, TILE_FRAME *pTile, int stat, int shade, int p
|
|||
int renderstyle = (stat & RS_NOMASK)? STYLE_Normal : STYLE_Translucent;
|
||||
double alpha = (stat & RS_TRANS1)? glblend[0].def[!!(stat & RS_TRANS2)].alpha : 1.;
|
||||
int pin = (stat & kQavOrientationLeft)? -1 : (stat & RS_ALIGN_R)? 1:0;
|
||||
if (palnum <= 0) palnum = pTile->palnum;
|
||||
auto translation = TRANSLATION(Translation_Remap, palnum);
|
||||
bool topleft = !!(stat & RS_TOPLEFT);
|
||||
|
||||
|
|
Loading…
Reference in a new issue