summaryrefslogtreecommitdiff
path: root/src/synth
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth')
-rw-r--r--src/synth/noise.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/synth/noise.rs b/src/synth/noise.rs
index 28a6b60..f241beb 100644
--- a/src/synth/noise.rs
+++ b/src/synth/noise.rs
@@ -29,11 +29,6 @@ pub struct NoiseFactory;
impl GeneratorFactory for NoiseFactory {
fn new(&self, params: &mut FactoryParameters) -> Result<GenBox, GenFactoryError> {
- let mut seed: [u32; 4] = ::rand::random();
- for i in seed.iter_mut() {
- *i = ::rand::random()
- }
-
Ok(Box::new(Noise {
rng: XorShiftRng::from_seed(::rand::random()),
buf: SampleBuffer::new(params.env.default_buffer_size),