mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-18 11:32:24 +00:00
Fix misc -Wmaybe-uninitialized
These only show up for me ifdef TESTERS, for some reason.
This commit is contained in:
parent
e89ecc7a2d
commit
b94f64e82f
2 changed files with 2 additions and 2 deletions
|
|
@ -13845,7 +13845,7 @@ static void P_SpawnItemRow(mapthing_t *mthing, mobjtype_t *itemtypes, UINT8 numi
|
|||
angle_t fineangle = (angle >> ANGLETOFINESHIFT) & FINEMASK;
|
||||
|
||||
boolean isloopend = (mthing->type == mobjinfo[MT_LOOPENDPOINT].doomednum);
|
||||
mobj_t *loopanchor;
|
||||
mobj_t *loopanchor = NULL;
|
||||
|
||||
boolean inclusive = isloopend;
|
||||
|
||||
|
|
|
|||
|
|
@ -716,7 +716,7 @@ static boolean R_IsFFloorTranslucent(visffloor_t *pfloor)
|
|||
// Renders all the thick sides in the given range.
|
||||
void R_RenderThickSideRange(drawseg_t *ds, INT32 x1, INT32 x2, ffloor_t *pfloor)
|
||||
{
|
||||
size_t pindex;
|
||||
size_t pindex = 0;
|
||||
column_t * col, *bmCol = NULL;
|
||||
INT32 lightnum;
|
||||
INT32 texnum, bmnum;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue