Remove silly superflous parenthesis.
This commit is contained in:
parent
beae3ea770
commit
0d0a305bf3
14 changed files with 31 additions and 31 deletions
|
@ -95,7 +95,7 @@ upd_buildeff(struct natstr *np, struct sctstr *sp, int *workp,
|
|||
vec[I_UW] = maxpop;
|
||||
*workp = (vec[I_CIVIL] * sctwork) / 100.0
|
||||
+ (vec[I_MILIT] * 2 / 5.0) + vec[I_UW];
|
||||
*workp = roundavg((etu * (*workp)) / 100.0);
|
||||
*workp = roundavg((etu * *workp) / 100.0);
|
||||
|
||||
buildeff_work = MIN((int)(*workp / 2), buildeff_work);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue