mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-29 04:50:42 +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;
|
stat |= pTile->stat;
|
||||||
x += pTile->x;
|
x += pTile->x;
|
||||||
y += pTile->y;
|
y += pTile->y;
|
||||||
|
if (palnum <= 0) palnum = pTile->palnum;
|
||||||
|
|
||||||
if (!to3dview)
|
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;
|
int renderstyle = (stat & RS_NOMASK)? STYLE_Normal : STYLE_Translucent;
|
||||||
double alpha = (stat & RS_TRANS1)? glblend[0].def[!!(stat & RS_TRANS2)].alpha : 1.;
|
double alpha = (stat & RS_TRANS1)? glblend[0].def[!!(stat & RS_TRANS2)].alpha : 1.;
|
||||||
int pin = (stat & kQavOrientationLeft)? -1 : (stat & RS_ALIGN_R)? 1:0;
|
int pin = (stat & kQavOrientationLeft)? -1 : (stat & RS_ALIGN_R)? 1:0;
|
||||||
if (palnum <= 0) palnum = pTile->palnum;
|
|
||||||
auto translation = TRANSLATION(Translation_Remap, palnum);
|
auto translation = TRANSLATION(Translation_Remap, palnum);
|
||||||
bool topleft = !!(stat & RS_TOPLEFT);
|
bool topleft = !!(stat & RS_TOPLEFT);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue