From c927eeb9eeed1b3a9ccd9a232df62fb3873ef267 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 13 Nov 2014 16:55:32 -0500 Subject: ensure that Ardour recognizes its own MMC device ID as "all-call" when set to 0x7f (127) --- libs/midi++2/mmc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/midi++2') diff --git a/libs/midi++2/mmc.cc b/libs/midi++2/mmc.cc index ffd21994c2..d722a816ee 100644 --- a/libs/midi++2/mmc.cc +++ b/libs/midi++2/mmc.cc @@ -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; } -- cgit v1.2.3