Ran through a different compiler, fixing the minor warnings it had

This commit is contained in:
Sally Coolatta 2020-08-15 09:32:10 -04:00
parent 631f698432
commit e0e506ec55
3 changed files with 5 additions and 4 deletions

View file

@ -875,7 +875,7 @@ void G_ConsAllGhostTics(void)
void G_ConsGhostTic(INT32 playernum)
{
UINT8 ziptic;
UINT32 px,py,pz,gx,gy,gz;
INT32 px,py,pz,gx,gy,gz;
mobj_t *testmo;
UINT32 syncleeway;

View file

@ -5529,7 +5529,7 @@ static void DrawReplayHutReplayInfo(void)
case MD_OUTDATED:
V_DrawThinString(17, 64, V_SNAPTOTOP|V_ALLOWLOWERCASE|V_TRANSLUCENT|highlightflags, "Recorded on an outdated version.");
/*fallthru*/
/* FALLTHRU */
default:
// Draw level stuff
x = 15; y = 15;

View file

@ -5813,7 +5813,7 @@ static boolean P_MobjDeadThink(mobj_t *mobj)
P_RemoveMobj(mobj);
return false;
}
// fallthru
/* FALLTHRU */
case MT_ORBINAUT_SHIELD:
case MT_BANANA_SHIELD:
case MT_EGGMANITEM_SHIELD:
@ -5823,7 +5823,7 @@ static boolean P_MobjDeadThink(mobj_t *mobj)
case MT_JAWZ_DUD:
if (P_IsObjectOnGround(mobj))
P_SetMobjState(mobj, mobj->info->xdeathstate);
// fallthru
/* FALLTHRU */
case MT_JAWZ_SHIELD:
mobj->drawflags ^= MFD_DONTDRAW;
break;
@ -8191,6 +8191,7 @@ static boolean P_MobjRegularThink(mobj_t *mobj)
cur = cur->hnext;
}
}
break;
case MT_RANDOMITEM:
if (gametype == GT_BATTLE && mobj->threshold == 70)
{