This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
Mini-Series
mirror of
https://github.com/DISTRHO/Mini-Series
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Cleanup
Signed-off-by: falkTX <falktx@falktx.com>
pull/1/head
falkTX
3 years ago
parent
3e13937555
commit
db6af45855
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
3 changed files
with
1 additions
and
11 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-5
plugins/3BandEQ/DistrhoPlugin3BandEQ.cpp
+0
-5
plugins/3BandSplitter/DistrhoPlugin3BandSplitter.cpp
+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, split
ted
output version.";
return "3 Band Equalizer, split output version.";
}
const char* getMaker() const noexcept override
Write
Preview
Loading…
Cancel
Save