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.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/synth/square.rs b/src/synth/square.rs
index d207562..9b4374f 100644
--- a/src/synth/square.rs
+++ b/src/synth/square.rs
@@ -23,7 +23,7 @@ impl Generator for Square {
self.phase = (self.phase + pvel * (self.buf.len() as f32)) % 1.0;
&self.buf
}
- fn buffer<'a>(&'a self) -> &'a SampleBuffer { &self.buf }
+ fn buffer(&self) -> &SampleBuffer { &self.buf }
fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer {
mem::replace(&mut self.buf, buf)
}
@@ -34,7 +34,7 @@ pub struct SquareFactory;
impl GeneratorFactory for SquareFactory {
fn new(&self, params: &mut FactoryParameters) -> Result<GenBox, GenFactoryError> {
Ok(Box::new(Square {
- freq: params.remove_param("freq", 0)?.as_gen()?,
+ freq: params.remove_param("freq", 0)?.into_gen()?,
phase: params.get_param("phase", 1, &ParamValue::Float(0.0)).as_f32()?,
buf: SampleBuffer::new(params.env.default_buffer_size),
}))