1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-23 23:03:55 +02:00

Effect::CopyInputTracks was only called with two values...

So now it simply takes a bool.
This commit is contained in:
Paul Licameli
2016-12-31 04:54:52 -05:00
parent 2e11844f6a
commit bb3aa00f50
11 changed files with 38 additions and 50 deletions

View File

@@ -224,9 +224,9 @@ bool EffectChangeSpeed::Process()
// Similar to EffectSoundTouch::Process()
// Iterate over each track.
// Track::All is needed because this effect needs to introduce
// All needed because this effect needs to introduce
// silence in the sync-lock group tracks to keep sync
CopyInputTracks(Track::All); // Set up mOutputTracks.
CopyInputTracks(true); // Set up mOutputTracks.
bool bGoodResult = true;
mCurTrackNum = 0;