From eddbd8715a99302bfb08880c820334c7e5862c50 Mon Sep 17 00:00:00 2001 From: Billy Messenger <60663878+BillyDM@users.noreply.github.com> Date: Thu, 2 May 2024 16:56:08 -0500 Subject: [PATCH] fix silence after plugin is reset --- Cargo.toml | 2 +- vitalium_verb_dsp/Cargo.toml | 2 +- vitalium_verb_dsp/src/reverb.rs | 3 --- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ea2b3a8..a32978e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vitalium_verb" -version = "0.1.0" +version = "1.0.1" edition = "2021" authors = ["Billy Messenger <60663878+BillyDM@users.noreply.github.com>"] license = "GPL-3.0-or-later" diff --git a/vitalium_verb_dsp/Cargo.toml b/vitalium_verb_dsp/Cargo.toml index 3ced8a1..0f8bb8b 100644 --- a/vitalium_verb_dsp/Cargo.toml +++ b/vitalium_verb_dsp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vitalium_verb_dsp" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "A port of the reverb module from the Vital/Vitalium synthesizer" readme = "README.md" diff --git a/vitalium_verb_dsp/src/reverb.rs b/vitalium_verb_dsp/src/reverb.rs index 1b24f48..52eb624 100644 --- a/vitalium_verb_dsp/src/reverb.rs +++ b/vitalium_verb_dsp/src/reverb.rs @@ -919,9 +919,6 @@ impl Reverb { /// Resets all buffers. pub fn reset(&mut self) { - self.wet_amp = V_0; - self.dry_amp = V_0; - self.pre_low_filter.reset(); self.pre_high_filter.reset();