mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-29 20:50:58 +00:00
Fix uninitialized variable warning
This commit is contained in:
parent
453f49cb77
commit
1ea3bd8fff
1 changed files with 1 additions and 1 deletions
|
@ -4092,7 +4092,7 @@ static void HWR_DrawSprite(gl_vissprite_t *spr)
|
|||
// colormap test
|
||||
{
|
||||
sector_t *sector = spr->mobj->subsector->sector;
|
||||
UINT8 lightlevel;
|
||||
UINT8 lightlevel = 0;
|
||||
boolean lightset = true;
|
||||
extracolormap_t *colormap = sector->extra_colormap;
|
||||
|
||||
|
|
Loading…
Reference in a new issue