mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Refuse more configs with unmatched midi in if !imprecise
Since MIDI in should be
This commit is contained in:
parent
79f66a36b4
commit
82e1ef5fb0
1 changed files with 1 additions and 1 deletions
|
|
@ -439,7 +439,7 @@ LuaProc::can_support_io_configuration (const ChanCount& in, ChanCount& out, Chan
|
|||
int possible_midiin = _has_midi_input ? 1 : 0;
|
||||
int possible_midiout = _has_midi_output ? 1 : 0;
|
||||
|
||||
if (midi_in > 0 && possible_midiin == 0 && !imprecise) {
|
||||
if (midi_in != possible_midiin && !imprecise) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue