This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Minor change to literals in IIRFilter.
tags/2021-05-28
jules
10 years ago
parent
43c7f38acf
commit
22b432c028
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_audio_basics/effects/juce_IIRFilter.cpp
+ 1
- 1
modules/juce_audio_basics/effects/juce_IIRFilter.cpp
View File
@@ -23,7 +23,7 @@
*/
#if JUCE_INTEL
#define JUCE_SNAP_TO_ZERO(n) if (! (n < -1.0e-8 || n > 1.0e-8)) n = 0;
#define JUCE_SNAP_TO_ZERO(n) if (! (n < -1.0e-8
f
|| n > 1.0e-8
f
)) n = 0;
#else
#define JUCE_SNAP_TO_ZERO(n)
#endif
Write
Preview
Loading…
Cancel
Save