mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
VST hosting pin connection fix.
This commit is contained in:
parent
0f9b76240c
commit
3f01bb72df
1 changed files with 2 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue