1
0
Fork 0
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:
jules 2012-11-23 17:21:55 +00:00
parent 51d1c85b4e
commit edca844722

View file

@ -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);
}