mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-02 00:29:41 +02:00
Fix release build EQ functions.
Uninitialized variable was 0 in debug builds, but could be very high value in release.
This commit is contained in:
parent
c1c7d5f0a0
commit
c9fbd283b7
@ -350,7 +350,7 @@ bool EffectEqualization::DefineParams( ShuttleParams & S ){
|
||||
}
|
||||
else
|
||||
{
|
||||
int numPoints;// = mLogEnvelope->GetNumberOfPoints();
|
||||
int numPoints=0;// = mLogEnvelope->GetNumberOfPoints();
|
||||
S.Define( numPoints, wxString("nPoints"), 0, 0,200,1);
|
||||
mCurves[0].points.clear();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user