Bug1340: sync-lock should work when generating audio

This commit is contained in:
Paul Licameli 2016-04-05 17:06:24 -04:00
parent 7886464688
commit df45886d6b
2 changed files with 1 additions and 2 deletions

View File

@ -763,7 +763,6 @@ void Effect::SetDuration(double seconds)
}
mDuration = seconds;
mT1 = mT0 + mDuration;
mIsSelection = false;

View File

@ -69,7 +69,7 @@ protected:
sampleCount block) = 0;
// Generate the track, one block at a time, & adding the results to tmp
bool GenerateTrack(WaveTrack *tmp, const WaveTrack &track, int ntrack);
bool GenerateTrack(WaveTrack *tmp, const WaveTrack &track, int ntrack) override;
};
#endif