Browse Source

JACK fix.

tags/2021-05-28
jules 12 years ago
parent
commit
d90d11143a
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      modules/juce_audio_devices/native/juce_linux_JackAudio.cpp

+ 2
- 1
modules/juce_audio_devices/native/juce_linux_JackAudio.cpp View File

@@ -107,7 +107,8 @@ namespace
static const char** getJackPorts (jack_client_t* const client, const bool forInput)
{
return juce::jack_get_ports (client, nullptr, nullptr,
forInput ? JackPortIsInput : JackPortIsOutput);
forInput ? JackPortIsOutput : JackPortIsInput);
// (NB: This looks like it's the wrong way round, but it is correct!)
}
//==============================================================================


Loading…
Cancel
Save