mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-25 08:38:39 +02: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:
parent
94f327d99c
commit
b17a14ccc2
@ -1208,8 +1208,8 @@ bool NyquistEffect::ProcessOne()
|
|||||||
wxMessageBox(_("Nyquist did not return audio.\n"),
|
wxMessageBox(_("Nyquist did not return audio.\n"),
|
||||||
wxT("Nyquist"),
|
wxT("Nyquist"),
|
||||||
wxOK | wxCENTRE, mUIParent);
|
wxOK | wxCENTRE, mUIParent);
|
||||||
for (i = 0; i < outChannels; i++) {
|
for (int j = 0; j < outChannels; j++) {
|
||||||
mOutputTrack[i].reset();
|
mOutputTrack[j].reset();
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user