forked from len0rd/rockbox
Cosmetic change of a comment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29666 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
29164ccbcc
commit
a7354e7925
1 changed files with 1 additions and 2 deletions
|
@ -121,8 +121,7 @@ static long fp_atof(const char* s, int precision)
|
|||
long convert_gain(long gain)
|
||||
{
|
||||
/* Don't allow unreasonably low or high gain changes.
|
||||
* Our math code can't handle it properly anyway. :)
|
||||
*/
|
||||
* Our math code can't handle it properly anyway. :) */
|
||||
gain = MAX(gain, FP_MIN);
|
||||
gain = MIN(gain, FP_MAX);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue