From bec6599f35410ca7a25e7772c8d07cc7564b3ffd Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 2 Oct 2024 18:18:28 +0200 Subject: [PATCH] increase ring modulated output --- synth/tx_voice.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synth/tx_voice.h b/synth/tx_voice.h index f05a54a..c063bd3 100644 --- a/synth/tx_voice.h +++ b/synth/tx_voice.h @@ -172,7 +172,7 @@ private: float wet_lvl = blend; float dry_signal = carrier; - float wet_signal = carrier * modulator * 1.5f; + float wet_signal = carrier * modulator * 2.0f; carrier = dry_lvl * dry_signal + wet_lvl * wet_signal; }