Remove unused locals

This commit is contained in:
lachwright 2019-09-29 21:29:37 +08:00
parent 71603006dc
commit 60cbc2e6b4

View file

@ -13957,8 +13957,6 @@ void A_RolloutRock(mobj_t *actor)
fixed_t pi = (22*FRACUNIT/7); fixed_t pi = (22*FRACUNIT/7);
fixed_t circumference = FixedMul(2 * pi, actor->radius); fixed_t circumference = FixedMul(2 * pi, actor->radius);
fixed_t oldspeed = P_AproxDistance(actor->momx, actor->momy), newspeed, topspeed = actor->info->speed; fixed_t oldspeed = P_AproxDistance(actor->momx, actor->momy), newspeed, topspeed = actor->info->speed;
mobj_t *target = actor->target;
player_t *player;
boolean inwater = actor->eflags & (MFE_TOUCHWATER|MFE_UNDERWATER); boolean inwater = actor->eflags & (MFE_TOUCHWATER|MFE_UNDERWATER);
actor->friction = FRACUNIT; actor->friction = FRACUNIT;