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
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

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