Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Cleanup
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Jun 14, 2021
1 parent 3e13937 commit db6af45
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 11 deletions.
5 changes: 0 additions & 5 deletions plugins/3BandEQ/DistrhoPlugin3BandEQ.cpp
Expand Up @@ -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;

Expand Down
5 changes: 0 additions & 5 deletions plugins/3BandSplitter/DistrhoPlugin3BandSplitter.cpp
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion plugins/3BandSplitter/DistrhoPlugin3BandSplitter.hpp
Expand Up @@ -51,7 +51,7 @@ class DistrhoPlugin3BandSplitter : public Plugin

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
Expand Down

0 comments on commit db6af45

Please sign in to comment.