mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 07:22:28 +00:00
Fix other uninitialized variable warnings
This commit is contained in:
parent
1ea3bd8fff
commit
f2aca01e2b
1 changed files with 1 additions and 1 deletions
|
@ -1456,7 +1456,7 @@ static void R_ProjectSprite(mobj_t *thing)
|
||||||
INT32 dispoffset = thing->info->dispoffset;
|
INT32 dispoffset = thing->info->dispoffset;
|
||||||
|
|
||||||
//SoM: 3/17/2000
|
//SoM: 3/17/2000
|
||||||
fixed_t gz, gzt;
|
fixed_t gz = 0, gzt = 0;
|
||||||
INT32 heightsec, phs;
|
INT32 heightsec, phs;
|
||||||
INT32 light = 0;
|
INT32 light = 0;
|
||||||
fixed_t this_scale = thing->scale;
|
fixed_t this_scale = thing->scale;
|
||||||
|
|
Loading…
Reference in a new issue