aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/eg-synth.lv2/synth.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/eg-synth.lv2/synth.c b/plugins/eg-synth.lv2/synth.c
index f64741a..4bed709 100644
--- a/plugins/eg-synth.lv2/synth.c
+++ b/plugins/eg-synth.lv2/synth.c
@@ -112,7 +112,6 @@ run(LV2_Handle instance, uint32_t n_samples)
float phase_increment = (1.f / samples_per_cycle);
for (uint32_t pos = 0; pos < n_samples; pos++) {
-
/* Calculate the next sample. Phase ranges from 0..1, but sin()
expects its input in radians, so we multiply by 2 PI to convert it.
We also multiply by volume so it's not extremely loud. */