Browse Source

Cleanup

Signed-off-by: falkTX <falktx@falktx.com>
pull/1/head
falkTX 3 years ago
parent
commit
db6af45855
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
3 changed files with 1 additions and 11 deletions
  1. +0
    -5
      plugins/3BandEQ/DistrhoPlugin3BandEQ.cpp
  2. +0
    -5
      plugins/3BandSplitter/DistrhoPlugin3BandSplitter.cpp
  3. +1
    -1
      plugins/3BandSplitter/DistrhoPlugin3BandSplitter.hpp

+ 0
- 5
plugins/3BandEQ/DistrhoPlugin3BandEQ.cpp View File

@@ -209,11 +209,6 @@ void DistrhoPlugin3BandEQ::activate()
xLP = std::exp(-2.0f * kPI * freqLP / sr);
#ifdef DISTRHO_OS_WINDOWS
// don't ask me why, but this fixes a crash/exception below on windows...
printf("%f\n", -xLP);
#endif
a0LP = 1.0f - xLP;
b1LP = -xLP;


+ 0
- 5
plugins/3BandSplitter/DistrhoPlugin3BandSplitter.cpp View File

@@ -209,11 +209,6 @@ void DistrhoPlugin3BandSplitter::activate()
xLP = std::exp(-2.0f * kPI * freqLP / sr);
#ifdef DISTRHO_OS_WINDOWS
// don't ask me why, but this fixes a crash/exception below on windows...
printf("%f\n", -xLP);
#endif
a0LP = 1.0f - xLP;
b1LP = -xLP;


+ 1
- 1
plugins/3BandSplitter/DistrhoPlugin3BandSplitter.hpp View File

@@ -51,7 +51,7 @@ protected:
const char* getDescription() const override
{
return "3 Band Equalizer, splitted output version.";
return "3 Band Equalizer, split output version.";
}
const char* getMaker() const noexcept override


Loading…
Cancel
Save