mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@231 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
0021e8eb32
commit
c4cd9ca1ef
1 changed files with 4 additions and 2 deletions
|
@ -1589,9 +1589,11 @@ void drawpoly (double *dpx, double *dpy, long n, long method)
|
||||||
if ((pth->flags & 16) && (!fullbrightpass) && (indrawroomsandmasks)) // tile has fullbright colors ?
|
if ((pth->flags & 16) && (!fullbrightpass) && (indrawroomsandmasks)) // tile has fullbright colors ?
|
||||||
{
|
{
|
||||||
fullbrightpass = 1;
|
fullbrightpass = 1;
|
||||||
shadeforfullbrightpass = globalshade;
|
shadeforfullbrightpass = globalshade; // save the current shade
|
||||||
globalshade = 0;
|
globalshade = -30; // fullbright
|
||||||
|
bglDisable(GL_FOG); // no fog
|
||||||
drawpoly(dpx, dpy, n, method); // draw them afterwards, then. :)
|
drawpoly(dpx, dpy, n, method); // draw them afterwards, then. :)
|
||||||
|
bglEnable(GL_FOG);
|
||||||
globalshade = shadeforfullbrightpass;
|
globalshade = shadeforfullbrightpass;
|
||||||
fullbrightpass = 0;
|
fullbrightpass = 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue