config: fix number of lights being loaded wrong if config is outdated

This commit is contained in:
Will Xyen
2020-06-29 06:49:22 -07:00
parent be4df516fd
commit b408cd9687
4 changed files with 29 additions and 8 deletions

View File

@@ -149,6 +149,11 @@ uint8_t mapper_get_nanalogs(void)
return mapper_impl_get_nanalogs(mapper_inst);
}
uint8_t mapper_get_nlights(void)
{
return mapper_impl_get_nlights(mapper_inst);
}
uint8_t mapper_get_npages(void)
{
return mapper_impl_get_npages(mapper_inst);