Fix long lines. No functional changes.

This commit is contained in:
Markus Armbruster 2006-04-16 17:20:33 +00:00
parent ba2c537ce5
commit 4836f6c543
29 changed files with 141 additions and 79 deletions

View file

@ -429,8 +429,9 @@ launch_sat(struct plnstr *pp, int sublaunch)
pp->pln_x = sx;
pp->pln_y = sy;
pp->pln_flags |= PLN_LAUNCHED;
pp->pln_mobil = (pp->pln_mobil > dist) ? (pp->pln_mobil - dist) : 0;
pp->pln_mobil = pp->pln_mobil > dist ? pp->pln_mobil - dist : 0;
putplane(pp->pln_uid, pp);
pr(", will be ready for use in %d time units\n", plane_mob_max - pp->pln_mobil);
pr(", will be ready for use in %d time units\n",
plane_mob_max - pp->pln_mobil);
return RET_OK;
}