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 problem with 64-bit FloatVectorOperations min/max range.
tags/2021-05-28
jules
11 years ago
parent
426f5a7174
commit
a6671bbae0
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/buffers/juce_FloatVectorOperations.cpp
+ 1
- 1
modules/juce_audio_basics/buffers/juce_FloatVectorOperations.cpp
View File
@@ -345,7 +345,7 @@ namespace FloatVectorHelpers
Range<Type> result (Mode::min (mn),
Mode::max (mx));
num &=
3
;
num &=
(Mode::numParallel - 1)
;
src += Mode::numParallel;
for (int i = 0; i < num; ++i)
Write
Preview
Loading…
Cancel
Save