summaryrefslogtreecommitdiff
path: root/src/synth/sine.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth/sine.rs')
-rw-r--r--src/synth/sine.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/synth/sine.rs b/src/synth/sine.rs
index 66f29ef..4476d4a 100644
--- a/src/synth/sine.rs
+++ b/src/synth/sine.rs
@@ -34,7 +34,7 @@ impl GeneratorFactory for SineFactory {
fn new(&self, params: &mut FactoryParameters) -> Result<GenBox, GenFactoryError> {
Ok(Box::new(Sine {
freq: params.remove_param("freq", 0)?.into_gen()?,
- phase: params.get_param("phase", 1, &ParamValue::Float(0.0)).as_f32()?,
+ phase: params.get_param("phase", 1, &mut ParamValue::Float(0.0)).as_f32()?,
buf: SampleBuffer::new(params.env.default_buffer_size),
}))
}