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
1 changed files with 1 additions and 1 deletions

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