13
0

ensure that Ardour recognizes its own MMC device ID as "all-call" when set to 0x7f (127)

This commit is contained in:
Paul Davis 2014-11-13 16:55:32 -05:00
parent b9be8d2652
commit c927eeb9ee

View File

@ -284,7 +284,7 @@ MachineControl::process_mmc_message (Parser &, MIDI::byte *msg, size_t len)
cerr << endl;
#endif
if (msg[1] != 0x7f && msg[1] != _receive_device_id) {
if (_receive_device_id != 0x7f && msg[1] != 0x7f && msg[1] != _receive_device_id) {
return;
}