mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-26 02:14:22 +00:00
Fixed a typo in JACK code.
This commit is contained in:
parent
51d1c85b4e
commit
edca844722
1 changed files with 1 additions and 1 deletions
|
|
@ -368,7 +368,7 @@ private:
|
|||
|
||||
if (callback != nullptr)
|
||||
{
|
||||
if ((numActiveInputChannels + numActiveOutputChannels) > 0)
|
||||
if ((numActiveInChans + numActiveOutChans) > 0)
|
||||
callback->audioDeviceIOCallback (const_cast <const float**> (inChans.getData()), numActiveInChans,
|
||||
outChans, numActiveOutChans, numSamples);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue