(resupply_commod,has_supply,use_supply): Remove unaccessed leftover

variables lcp.  No functional changes.
This commit is contained in:
Marc Olzheim 2004-12-14 17:40:59 +00:00
parent 61cb34b7ef
commit 44c273dd01

View file

@ -83,11 +83,8 @@ void
resupply_commod(struct lndstr *lp, i_type type) resupply_commod(struct lndstr *lp, i_type type)
{ {
int amt; int amt;
struct lchrstr *lcp;
struct shpstr ship; struct shpstr ship;
lcp = &lchr[(int)lp->lnd_type];
/* Ok, do we now have enough? */ /* Ok, do we now have enough? */
amt = get_minimum(lp, type) - lp->lnd_item[type]; amt = get_minimum(lp, type) - lp->lnd_item[type];
if (amt > 0) { if (amt > 0) {
@ -482,13 +479,10 @@ get_minimum(struct lndstr *lp, i_type type)
int int
has_supply(struct lndstr *lp) has_supply(struct lndstr *lp)
{ {
struct lchrstr *lcp;
int shells_needed, shells, keepshells; int shells_needed, shells, keepshells;
int food, food_needed, keepfood; int food, food_needed, keepfood;
int fuel_needed, fuel, petrol_needed, petrol, keeppetrol; int fuel_needed, fuel, petrol_needed, petrol, keeppetrol;
lcp = &lchr[(int)lp->lnd_type];
if (!opt_NOFOOD) { if (!opt_NOFOOD) {
food_needed = get_minimum(lp, I_FOOD); food_needed = get_minimum(lp, I_FOOD);
food = keepfood = lp->lnd_item[I_FOOD]; food = keepfood = lp->lnd_item[I_FOOD];
@ -549,12 +543,9 @@ has_supply(struct lndstr *lp)
int int
use_supply(struct lndstr *lp) use_supply(struct lndstr *lp)
{ {
struct lchrstr *lcp;
int shells_needed, shells, food, food_needed; int shells_needed, shells, food, food_needed;
int fuel_needed, fuel, petrol_needed, petrol; int fuel_needed, fuel, petrol_needed, petrol;
lcp = &lchr[(int)lp->lnd_type];
shells_needed = lp->lnd_ammo; shells_needed = lp->lnd_ammo;
shells = lp->lnd_item[I_SHELL]; shells = lp->lnd_item[I_SHELL];
if (shells < shells_needed) { if (shells < shells_needed) {