From 319a6a52ba071dd94bd4bf0669c94806df4d3727 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 17 Oct 2018 19:56:06 +0200 Subject: [PATCH] Fix MMC range 0..127 (libardour uses and 0x7f) --- gtk2_ardour/rc_option_editor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index 28a5608790..08d55a8f0e 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -3316,7 +3316,7 @@ RCOptionEditor::RCOptionEditor () _("Inbound MMC device ID"), sigc::mem_fun (*_rc_config, &RCConfiguration::get_mmc_receive_device_id), sigc::mem_fun (*_rc_config, &RCConfiguration::set_mmc_receive_device_id), - 0, 128, 1, 10 + 0, 127, 1, 10 )); add_option (_("Sync/MIDI"), @@ -3325,7 +3325,7 @@ RCOptionEditor::RCOptionEditor () _("Outbound MMC device ID"), sigc::mem_fun (*_rc_config, &RCConfiguration::get_mmc_send_device_id), sigc::mem_fun (*_rc_config, &RCConfiguration::set_mmc_send_device_id), - 0, 128, 1, 10 + 0, 127, 1, 10 )); -- 2.30.2