Remove some redundant parenthesis; no functional change.
This commit is contained in:
parent
4861f837fb
commit
380b063f9c
41 changed files with 134 additions and 134 deletions
|
@ -115,7 +115,7 @@ limit_level(double level, int type, int flag)
|
|||
above = logx(above_easy + 1.0, logbase);
|
||||
if (above > 250)
|
||||
above = 250;
|
||||
return ((above) < 0) ? easy : (easy + above);
|
||||
return above < 0 ? easy : easy + above;
|
||||
} else
|
||||
return level;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue