mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 08:14:58 +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:
|
case 13:
|
||||||
flt = &flt_selected;
|
flt = &flt_selected;
|
||||||
break;
|
break;
|
||||||
case 14: // Factory Template 7 behaves strange
|
case 14: // Factory Template 7 behaves strange, don't map it to anyhting
|
||||||
break; // don't map it to anyhting
|
flt = &flt_default;
|
||||||
|
break;
|
||||||
case 15:
|
case 15:
|
||||||
flt = &flt_mains;
|
flt = &flt_mains;
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue