13
0

LCXL: Fix uninitialized pointer function

See also 026b74e25d. FilterFunction must point to a valid function.
This commit is contained in:
Robin Gareus 2019-08-24 00:01:06 +02:00
parent 2920bd0253
commit f7968f15dd
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -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;