Browse Source

Minor change to literals in IIRFilter.

tags/2021-05-28
jules 10 years ago
parent
commit
22b432c028
1 changed files with 1 additions and 1 deletions
  1. +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-8f || n > 1.0e-8f)) n = 0;
#else
#define JUCE_SNAP_TO_ZERO(n)
#endif


Loading…
Cancel
Save