Browse Source

Set loadDefaultState as supported LV2 feature

tags/1.9.7
falkTX 7 years ago
parent
commit
ae34a145f7
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      source/utils/CarlaLv2Utils.hpp

+ 2
- 0
source/utils/CarlaLv2Utils.hpp View File

@@ -1546,6 +1546,8 @@ bool is_lv2_feature_supported(const LV2_URI uri) noexcept
return true; return true;
if (std::strcmp(uri, LV2_RTSAFE_MEMORY_POOL_DEPRECATED_URI) == 0) if (std::strcmp(uri, LV2_RTSAFE_MEMORY_POOL_DEPRECATED_URI) == 0)
return true; return true;
if (std::strcmp(uri, LV2_STATE__loadDefaultState) == 0)
return true;
if (std::strcmp(uri, LV2_STATE__makePath) == 0) if (std::strcmp(uri, LV2_STATE__makePath) == 0)
return true; return true;
if (std::strcmp(uri, LV2_STATE__mapPath) == 0) if (std::strcmp(uri, LV2_STATE__mapPath) == 0)


Loading…
Cancel
Save