1
0
Fork 0
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:
Andree Buschmann 2011-03-31 22:06:52 +00:00
parent 29164ccbcc
commit a7354e7925

View file

@ -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);