Removed useless dereferencing. With any luck I understand what despair's

code is supposed to do this time.
This commit is contained in:
Brian Koropoff 2002-05-25 20:04:42 +00:00
parent f1f942dfd1
commit ddd96312b1

View file

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