From f5638c863c19238361f0d104766fc691334fa767 Mon Sep 17 00:00:00 2001 From: Isaac Marovitz Date: Mon, 29 Apr 2024 20:49:16 -0400 Subject: [PATCH] Remove magic synth sleep --- src/sound/synth.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/sound/synth.rs b/src/sound/synth.rs index 09f4658..0dd89fe 100644 --- a/src/sound/synth.rs +++ b/src/sound/synth.rs @@ -234,10 +234,6 @@ impl Synth { ) .unwrap(); stream.play().unwrap(); - - loop { - std::thread::sleep(Duration::from_millis(1)); - } }); }