This better actually fix the lightmap code.

This commit is contained in:
Brian Koropoff 2002-05-25 21:55:34 +00:00
parent 8ebd2c6243
commit 75ec7de2f5
1 changed files with 1 additions and 1 deletions

View File

@ -295,7 +295,7 @@ R_BuildLightMap (msurface_t *surf, byte * dest, int stride)
bl++; bl++;
*dest++ = min (*bl >> shift, 255); *dest++ = min (*bl >> shift, 255);
bl++; bl++;
dest++; // set to 255 if RGBA internal format is wanted *dest++ = 255; // set to 255 if RGBA internal format is wanted
// instead of RGB // instead of RGB
} }
} }