mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix uninitialized variable warning
This commit is contained in:
parent
a91a55fb58
commit
b7590971f4
1 changed files with 1 additions and 1 deletions
|
|
@ -4092,7 +4092,7 @@ static void HWR_DrawSprite(gl_vissprite_t *spr)
|
||||||
// colormap test
|
// colormap test
|
||||||
{
|
{
|
||||||
sector_t *sector = spr->mobj->subsector->sector;
|
sector_t *sector = spr->mobj->subsector->sector;
|
||||||
UINT8 lightlevel;
|
UINT8 lightlevel = 0;
|
||||||
boolean lightset = true;
|
boolean lightset = true;
|
||||||
extracolormap_t *colormap = sector->extra_colormap;
|
extracolormap_t *colormap = sector->extra_colormap;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue