PluginIssue: Add too MIDI in/out channels

This commit is contained in:
Johannes Lorenz
2020-10-04 21:45:00 +02:00
parent 8939b149e3
commit b558865ca4
2 changed files with 6 additions and 0 deletions

View File

@@ -36,6 +36,8 @@ enum PluginIssueType
unknownPortType,
tooManyInputChannels,
tooManyOutputChannels,
tooManyMidiInputChannels,
tooManyMidiOutputChannels,
noOutputChannel,
portHasNoDef,
portHasNoMin,

View File

@@ -38,6 +38,10 @@ const char *PluginIssue::msgFor(const PluginIssueType &it)
return "too many audio input channels";
case tooManyOutputChannels:
return "too many audio output channels";
case tooManyMidiInputChannels:
return "too many MIDI input channels";
case tooManyMidiOutputChannels:
return "too many MIDI output channels";
case noOutputChannel:
return "no audio output channel";
case portHasNoDef: