This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
DPF
mirror of
https://github.com/DISTRHO/DPF
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Don't return reference in getFixedValue function
Signed-off-by: falkTX <falktx@falktx.com>
pull/130/head
falkTX
5 years ago
parent
f80f8bf316
commit
7a056bbcf8
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
distrho/DistrhoPlugin.hpp
+ 1
- 1
distrho/DistrhoPlugin.hpp
View File
@@ -226,7 +226,7 @@ struct ParameterRanges {
/**
Get a fixed value within range.
*/
const
float
&
getFixedValue(const float& value) const noexcept
float getFixedValue(const float& value) const noexcept
{
if (value <= min)
return min;
Write
Preview
Loading…
Cancel
Save