Fix orientation bit 64 when applied to a tile with fullbrights in OpenGL with r_fullbrights enabled.

This fixes (the most glaringly wrong problem) with WWII GI's LOGO.ANM in OpenGL, exposed by r5437.

git-svn-id: https://svn.eduke32.com/eduke32@5460 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2015-11-28 09:06:34 +00:00
parent 38dd14b124
commit 4abd453bcf
1 changed files with 3 additions and 3 deletions

View File

@ -858,12 +858,12 @@ void gloadtile_art(int32_t dapic, int32_t dapal, int32_t tintpalnum, int32_t das
} }
} }
if (dacol != 255)
{ {
char *p = (char *)(palookup[dapal])+(int32_t)(dashade<<8); char *p = (char *)(palookup[dapal])+(int32_t)(dashade<<8);
dacol = (uint8_t)p[dacol]; dacol = (uint8_t)p[dacol];
} }
else
if (dacol == 255)
{ {
wpptr->a = 0; wpptr->a = 0;
hasalpha = 1; hasalpha = 1;
@ -1553,7 +1553,7 @@ static void polymost_drawpoly(vec2f_t const * const dpxy, int32_t const n, int32
; /* do nothing */ ; /* do nothing */
} }
if ((!(method&3)) && (!fullbright_pass)) if (!(method&3) && fullbright_pass < 2)
{ {
bglDisable(GL_BLEND); bglDisable(GL_BLEND);
bglDisable(GL_ALPHA_TEST); bglDisable(GL_ALPHA_TEST);