1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-08 08:01:19 +02:00

Initialise m_T1 correctly, in case no processing is applied and it doesn't get updated elsewhere.

This commit is contained in:
martynshaw99 2012-06-14 22:46:55 +00:00
parent dd29bce63b
commit ad5717c594

View File

@ -85,7 +85,7 @@ bool EffectPaulstretch::Process(){
CopyInputTracks();
SelectedTrackListOfKindIterator iter(Track::Wave, mOutputTracks);
WaveTrack *track = (WaveTrack *) iter.First();
m_t1=0.0;
m_t1=mT1;
int count=0;
while (track) {
double trackStart = track->GetStartTime();