1
0
Fork 0
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:
jules 2012-12-03 18:08:01 +00:00
parent 0f9b76240c
commit 3f01bb72df

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: