summaryrefslogtreecommitdiff
path: root/firmware/replaygain.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/replaygain.c')
-rw-r--r--firmware/replaygain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/replaygain.c b/firmware/replaygain.c
index 3a2e89757a..a8331ae483 100644
--- a/firmware/replaygain.c
+++ b/firmware/replaygain.c
@@ -289,9 +289,9 @@ static long convert_gain(long gain)
289 /* Don't allow unreasonably low or high gain changes. 289 /* Don't allow unreasonably low or high gain changes.
290 * Our math code can't handle it properly anyway. :) 290 * Our math code can't handle it properly anyway. :)
291 */ 291 */
292 if (gain < (-23 * FP_ONE)) 292 if (gain < (-48 * FP_ONE))
293 { 293 {
294 gain = -23 * FP_ONE; 294 gain = -48 * FP_ONE;
295 } 295 }
296 296
297 if (gain > (17 * FP_ONE)) 297 if (gain > (17 * FP_ONE))