diff options
author | David Robillard <d@drobilla.net> | 2014-05-04 08:17:57 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-05-04 08:17:57 +0000 |
commit | ea74eb527d8cb7af2545f960f34e7d3517bd37fa (patch) | |
tree | 16ce368840d5ac242616677d7b2874c6844d9714 | |
parent | 4e70264247f9314f24a2b32189766c96596bd451 (diff) | |
download | jalv-ea74eb527d8cb7af2545f960f34e7d3517bd37fa.tar.gz jalv-ea74eb527d8cb7af2545f960f34e7d3517bd37fa.tar.bz2 jalv-ea74eb527d8cb7af2545f960f34e7d3517bd37fa.zip |
'Support' lv2:isLive.
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5394 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | src/jalv.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -173,6 +173,9 @@ const LV2_Feature* features[13] = { static bool feature_is_supported(const char* uri) { + if (!strcmp(uri, "http://lv2plug.in/ns/lv2core#isLive")) { + return true; + } for (const LV2_Feature*const* f = features; *f; ++f) { if (!strcmp(uri, (*f)->URI)) { return true; |