mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
Fix MMC range 0..127 (libardour uses and 0x7f)
This commit is contained in:
parent
70c0e34c4d
commit
319a6a52ba
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
));
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue