Browse Source

VST hosting pin connection fix.

tags/2021-05-28
jules 12 years ago
parent
commit
3f01bb72df
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp

+ 2
- 1
modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp View File

@@ -1321,7 +1321,8 @@ public:
break;
case audioMasterPinConnected: return isValidChannel (index, value == 0) ? 1 : 0;
case audioMasterPinConnected:
return isValidChannel (index, value == 0) ? 0 : 1; // (yes, 0 = true)
// none of these are handled (yet)..
case audioMasterBeginEdit:


Loading…
Cancel
Save