gate: decrease attack, increase release

This commit is contained in:
Michael Sippel 2025-02-17 17:56:58 +01:00
parent ce2212708a
commit 62acece204
Signed by: senvas
GPG key ID: 060F22F65102F95C

4
gate.c
View file

@ -17,8 +17,8 @@ void gate_init(
gate->is_active = false; gate->is_active = false;
gate->cur_gain = 1.0; gate->cur_gain = 1.0;
gate->attack = 1.0 / 512.0; gate->attack = 1.0 / 128.0;
gate->release = 1.0 / 4096.0; gate->release = 1.0 / 8192.0;
} }
void gate_process( void gate_process(