Change default to -1.0 from 0.0

This commit is contained in:
Leland Lucius 2015-05-20 10:56:19 -05:00
parent d7ffab7825
commit d2a6f8dbc2
1 changed files with 1 additions and 1 deletions

2
src/effects/Normalize.cpp Normal file → Executable file
View File

@ -33,7 +33,7 @@
// Define keys, defaults, minimums, and maximums for the effect parameters
//
// Name Type Key Def Min Max Scale
Param( Level, double, XO("Level"), 0.0, -145.0, 0.0, 1 );
Param( Level, double, XO("Level"), -1.0, -145.0, 0.0, 1 );
Param( RemoveDC, bool, XO("RemoveDcOffset"), true, false, true, 1 );
Param( ApplyGain, bool, XO("ApplyGain"), true, false, true, 1 );
Param( StereoInd, bool, XO("StereoIndependent"), false, false, true, 1 );