From ef30ad688a67b91c772bc74984cd957ea81e880d Mon Sep 17 00:00:00 2001 From: Markus Schmidt Date: Mon, 10 Feb 2014 20:26:55 +0100 Subject: [PATCH] Vintage Delay: (temporarily?) disable LV2 BPM linking with host --- src/makerdf.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/makerdf.cpp b/src/makerdf.cpp index 6672eda..04485d2 100644 --- a/src/makerdf.cpp +++ b/src/makerdf.cpp @@ -166,8 +166,13 @@ static bool add_ctl_port(string &ports, const parameter_properties &pp, int pidx // for now I assume that the only tempo passed is the tempo the plugin should operate with // this may change as more complex plugins are added - if (unit == (PF_UNIT_BPM >> 24)) - ss << ind << "lv2:designation ;\n"; + + // Markus: This entry binds BPM to the hosts BPM setting, so delays + // are fixed within multitrack environments, disabling it to fix + // some reported bugs + + // if (unit == (PF_UNIT_BPM >> 24)) + // ss << ind << "lv2:designation ;\n"; ss << " ]"; ports += ss.str(); -- 2.11.4.GIT