mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
Fix FP16 Solo (0x53 is mapped to encoder-press, 0x56 to loop)
This commit is contained in:
parent
277c75c894
commit
d785883836
1 changed files with 8 additions and 1 deletions
|
|
@ -60,7 +60,14 @@ FP8Strip::midi_ctrl_id (CtrlElement type, uint8_t id)
|
|||
id -= 8;
|
||||
switch (type) {
|
||||
case BtnSolo:
|
||||
return 0x50 + id;
|
||||
switch (id) {
|
||||
case 3:
|
||||
return 0x58;
|
||||
case 6:
|
||||
return 0x59;
|
||||
default:
|
||||
return 0x50 + id;
|
||||
}
|
||||
case BtnMute:
|
||||
return 0x78 + id;
|
||||
case BtnSelect:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue