diff options
-rw-r--r-- | 4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c b/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c index 6d5f9e3..0ea3e12 100644 --- a/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c +++ b/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c @@ -45,12 +45,12 @@ AFB_ApiT AFB_default; // Config Section definition static CtlSectionT ctrlSections[] = { - {.key="plugins" , .loadCB= PluginConfig}, + {.key="resources", .loadCB= PluginConfig}, + {.key="onload", .loadCB= OnloadConfig}, {.key="controls", .loadCB= ControlConfig}, - {.key="events" , .loadCB= EventConfig}, + {.key="events", .loadCB= EventConfig}, {.key="halmap", .loadCB= HalCtlsHalMapConfig}, {.key="halmixer", .loadCB= HalCtlsHalMixerConfig}, - {.key="onload" , .loadCB= OnloadConfig}, {.key=NULL} }; |