Drop prxy()'s parameter country
Argument is always player->cnum. Hardly surprising, because that's to whom it prints.
This commit is contained in:
parent
5f3fa793b7
commit
5920515cd7
35 changed files with 49 additions and 51 deletions
|
@ -57,7 +57,7 @@ carg(void)
|
|||
pr("shp# x,y flt eff civ mil uw sh gun pet irn dst bar oil lcm hcm rad\n");
|
||||
pr("%4d ", ni.cur);
|
||||
pr("%-4.4s ", mchr[(int)ship.shp_type].m_name);
|
||||
prxy("%4d,%-4d ", ship.shp_x, ship.shp_y, player->cnum);
|
||||
prxy("%4d,%-4d ", ship.shp_x, ship.shp_y);
|
||||
pr("%1.1s", &ship.shp_fleet);
|
||||
pr("%4d%%", ship.shp_effic);
|
||||
pr("%4d", ship.shp_item[I_CIVIL]);
|
||||
|
@ -106,7 +106,7 @@ lcarg(void)
|
|||
pr("lnd# unit x,y a eff civ mil uw sh gun pet irn dst bar oil lcm hcm rad\n");
|
||||
pr("%4d ", ni.cur);
|
||||
pr("%-4.4s ", lchr[(int)land.lnd_type].l_name);
|
||||
prxy("%4d,%-4d ", land.lnd_x, land.lnd_y, player->cnum);
|
||||
prxy("%4d,%-4d ", land.lnd_x, land.lnd_y);
|
||||
pr("%1.1s ", &land.lnd_army);
|
||||
pr("%4d%%", land.lnd_effic);
|
||||
pr("%4d", land.lnd_item[I_CIVIL]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue