mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-14 00:14:18 +00:00
Fixed a conversion warning in LogSmoothedValue::skip()
This commit is contained in:
parent
ecb87a14b0
commit
0cf4b0f80c
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue