hos: update fss0 parser

- Move extra key checks in the parser
- Remove some sept leftover checks
- Update printing to reflect PK3 name (FSS0 -> FSS/PK3)
This commit is contained in:
CTCaer
2021-09-17 23:20:39 +03:00
parent 7fb10b0242
commit a2d18f0848
3 changed files with 19 additions and 27 deletions

View File

@@ -262,15 +262,6 @@ static int _config_exo_cal0_writes_enable(launch_ctxt_t *ctxt, const char *value
static int _config_fss(launch_ctxt_t *ctxt, const char *value)
{
LIST_FOREACH_ENTRY(ini_kv_t, kv, &ctxt->cfg->kvs, link)
{
if (!strcmp("fss0experimental", kv->key))
{
ctxt->fss0_experimental = *kv->val == '1';
break;
}
}
return parse_fss(ctxt, value);
}