mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-08 14:13:57 +01:00
Nested loop should use a different index variable...
... but there was not a bug here, because of the return.
This commit is contained in:
@@ -1208,8 +1208,8 @@ bool NyquistEffect::ProcessOne()
|
||||
wxMessageBox(_("Nyquist did not return audio.\n"),
|
||||
wxT("Nyquist"),
|
||||
wxOK | wxCENTRE, mUIParent);
|
||||
for (i = 0; i < outChannels; i++) {
|
||||
mOutputTrack[i].reset();
|
||||
for (int j = 0; j < outChannels; j++) {
|
||||
mOutputTrack[j].reset();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user