mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Removed useless dereferencing. With any luck I understand what despair's
code is supposed to do this time.
This commit is contained in:
parent
f1f942dfd1
commit
ddd96312b1
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue