mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-21 19:32:30 +00:00
*ahem* r_fullbright shouldn't be allowed to be turned on in GL.
This commit is contained in:
parent
6749aa353d
commit
fb8fde7c46
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ void R_BuildLightMap (msurface_t *surf, byte *dest, int stride)
|
|||
lightmap = surf->samples;
|
||||
|
||||
// set to full bright if no light data
|
||||
if (r_fullbright->value || !cl.worldmodel->lightdata)
|
||||
if (/*r_fullbright->value ||*/ !cl.worldmodel->lightdata)
|
||||
{
|
||||
for (i=0 ; i<size ; i++)
|
||||
cblocklights[0][i] =
|
||||
|
|
Loading…
Reference in a new issue