Fix misc -Wmaybe-uninitialized

These only show up for me ifdef TESTERS, for some reason.
This commit is contained in:
James R 2023-08-08 15:29:28 -07:00
parent e89ecc7a2d
commit b94f64e82f
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;