Browse Source

tags/2021-05-28
jules 17 years ago
parent
commit
52e8c35a72
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      juce_amalgamated.cpp
  2. +1
    -1
      src/juce_appframework/audio/processors/juce_AudioProcessorGraph.cpp

+ 1
- 1
juce_amalgamated.cpp View File

@@ -32904,7 +32904,7 @@ public:
: node (node_),
processor (node_->processor),
audioChannelsToUse (audioChannelsToUse_),
totalChans (totalChans_),
totalChans (jmax (1, totalChans_)),
midiBufferToUse (midiBufferToUse_)
{
channels = (float**) juce_calloc (sizeof (float*) * totalChans_);


+ 1
- 1
src/juce_appframework/audio/processors/juce_AudioProcessorGraph.cpp View File

@@ -511,7 +511,7 @@ public:
: node (node_),
processor (node_->processor),
audioChannelsToUse (audioChannelsToUse_),
totalChans (totalChans_),
totalChans (jmax (1, totalChans_)),
midiBufferToUse (midiBufferToUse_)
{
channels = (float**) juce_calloc (sizeof (float*) * totalChans_);


Loading…
Cancel
Save