mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-27 02:20:05 +00:00
Fix bug in AudioGraphIOProcessor
This commit is contained in:
parent
fe1421064b
commit
9069d70141
1 changed files with 2 additions and 2 deletions
|
|
@ -1646,8 +1646,8 @@ void AudioProcessorGraph::AudioGraphIOProcessor::setParentGraph (AudioProcessorG
|
|||
|
||||
if (graph != nullptr)
|
||||
{
|
||||
setPlayConfigDetails (type == audioOutputNode ? graph->getMainBusNumOutputChannels() : 0,
|
||||
type == audioInputNode ? graph->getMainBusNumInputChannels() : 0,
|
||||
setPlayConfigDetails (type == audioInputNode ? graph->getMainBusNumInputChannels() : 0,
|
||||
type == audioOutputNode ? graph->getMainBusNumOutputChannels() : 0,
|
||||
getSampleRate(),
|
||||
getBlockSize());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue