mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
LCXL: Fix uninitialized pointer function
See also 026b74e25d. FilterFunction must point to a valid function.
This commit is contained in:
parent
2920bd0253
commit
f7968f15dd
1 changed files with 3 additions and 2 deletions
|
|
@ -1031,8 +1031,9 @@ LaunchControlXL::filter_stripables(StripableList& strips) const
|
|||
case 13:
|
||||
flt = &flt_selected;
|
||||
break;
|
||||
case 14: // Factory Template 7 behaves strange
|
||||
break; // don't map it to anyhting
|
||||
case 14: // Factory Template 7 behaves strange, don't map it to anyhting
|
||||
flt = &flt_default;
|
||||
break;
|
||||
case 15:
|
||||
flt = &flt_mains;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue