The app is technically functional

This commit is contained in:
2025-10-10 22:19:39 +10:00
parent a2f2b74228
commit 55499d2d7f
8 changed files with 357 additions and 2 deletions

View File

@@ -433,7 +433,7 @@ int configHandler_Read(configHandler_config_t** configObj) {
return 1;
}
cJSON* calf_reverb_filter_name = cJSON_GetObjectItemCaseSensitive(lv2_root, "filter_name");
cJSON* calf_reverb_filter_name = cJSON_GetObjectItemCaseSensitive(calf_reverb_root, "filter_name");
if (cJSON_IsString(calf_reverb_filter_name) && calf_reverb_filter_name->valuestring != NULL) {
(*configObj)->lv2_reverb_filter_name = strdup(calf_reverb_filter_name->valuestring);
}