From 8c0342480bd05f02e20d4729d8057a6216341e8f Mon Sep 17 00:00:00 2001 From: Brenno Date: Sat, 10 Jul 2021 19:49:58 -0300 Subject: [PATCH] Adjusting parameters of distortion --- src/audio_effects/Distortion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio_effects/Distortion.cpp b/src/audio_effects/Distortion.cpp index 1266c56d1..b42ff0bce 100644 --- a/src/audio_effects/Distortion.cpp +++ b/src/audio_effects/Distortion.cpp @@ -34,7 +34,7 @@ using namespace openshot; /// Blank constructor, useful when using Json to load the effect properties -Distortion::Distortion() : distortion_type(HARD_CLIPPING), input_gain(0), output_gain(0), tone(0) { +Distortion::Distortion() : distortion_type(HARD_CLIPPING), input_gain(10), output_gain(-10), tone(5) { // Init effect properties init_effect_details(); }