summaryrefslogtreecommitdiff
path: root/src/synth/square.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth/square.rs')
-rw-r--r--src/synth/square.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/synth/square.rs b/src/synth/square.rs
index 9b4374f..4b01e07 100644
--- a/src/synth/square.rs
+++ b/src/synth/square.rs
@@ -35,7 +35,7 @@ impl GeneratorFactory for SquareFactory {
fn new(&self, params: &mut FactoryParameters) -> Result<GenBox, GenFactoryError> {
Ok(Box::new(Square {
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),
}))
}