Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Nov 24, 2022
1 parent 4ee74cd commit 2808fcb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugins/ConvolutionReverb/DistrhoPluginInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ enum States {
};

static const float kParameterDefaults[kParameterCount] = {
-30.f,
0.f,
-30.f,
0.f,
1.f,
0.f
Expand Down
4 changes: 1 addition & 3 deletions plugins/ConvolutionReverb/OneKnobPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ static constexpr const size_t tailBlockSize = 1024;

// -----------------------------------------------------------------------

#define THREADED_CONVOLVER

class TwoStageThreadedConvolver : public fftconvolver::TwoStageFFTConvolver,
private Thread
{
Expand Down Expand Up @@ -204,7 +202,7 @@ class OneKnobConvolutionReverbPlugin : public OneKnobPlugin
parameter.unit = "Hz";
parameter.ranges.def = kParameterDefaults[kParameterHighPassFilter];
parameter.ranges.min = 0.f;
parameter.ranges.max = 300.f;
parameter.ranges.max = 500.f;
{
ParameterEnumerationValue* const enumValues = new ParameterEnumerationValue[1];
enumValues[0].value = 0.f;
Expand Down
3 changes: 3 additions & 0 deletions plugins/common/Korg35Filters.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

#pragma once

#include <algorithm>
#include <cstdint>

//========================================================================================
// The following filters are virtual analog models of the Korg 35 low-pass
// filter and high-pass filter found in the MS-10 and MS-20 synthesizers.
Expand Down

0 comments on commit 2808fcb

Please sign in to comment.