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
Fixed a conversion warning in LogSmoothedValue::skip()
tags/2021-05-28
ed
6 years ago
parent
ecb87a14b0
commit
0cf4b0f80c
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/utilities/juce_SmoothedValues.h
+ 1
- 1
modules/juce_audio_basics/utilities/juce_SmoothedValues.h
View File
@@ -407,7 +407,7 @@ public:
this->countdown -= numSamples;
auto rN = std::pow (r, numSamples);
auto rN =
(FloatType)
std::pow (r, numSamples);
temp *= rN;
temp += d * (rN - (FloatType) 1) / (r - (FloatType) 1);
Write
Preview
Loading…
Cancel
Save