diff options
Diffstat (limited to 'plugins/eg-metro.lv2')
-rw-r--r-- | plugins/eg-metro.lv2/metro.c | 2 | ||||
-rw-r--r-- | plugins/eg-metro.lv2/wscript | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/plugins/eg-metro.lv2/metro.c b/plugins/eg-metro.lv2/metro.c index 5e484b7..84d042d 100644 --- a/plugins/eg-metro.lv2/metro.c +++ b/plugins/eg-metro.lv2/metro.c @@ -69,7 +69,7 @@ typedef enum { wave which is conceptually played continuously. The 'tick' is generated by enveloping the amplitude so there is a short attack/decay peak around a tick, and silence the rest of the time. - + This example uses a simple AD envelope with fixed parameters. A more sophisticated implementation might use a more advanced envelope and allow the user to modify these parameters, the frequency of the wave, and so on. diff --git a/plugins/eg-metro.lv2/wscript b/plugins/eg-metro.lv2/wscript index 2a3731c..515dd6c 100644 --- a/plugins/eg-metro.lv2/wscript +++ b/plugins/eg-metro.lv2/wscript @@ -41,7 +41,7 @@ def build(bld): target = '%s/%s' % (bundle, 'manifest.ttl'), install_path = '${LV2DIR}/%s' % bundle, LIB_EXT = module_ext) - + # Copy other data files to build bundle (build/eg-metro.lv2) bld(features = 'subst', is_copy = True, @@ -63,4 +63,3 @@ def build(bld): use = ['M', 'LV2'], includes = includes) obj.env.cshlib_PATTERN = module_pat - |