diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-09-26 18:31:23 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-09-26 18:31:23 -0300 |
commit | 9e54b5c62b177ced1643f22f13a480ed7646d27e (patch) | |
tree | c8dcaf98c4e0e32dedd9c57636793484415b75d9 /core/math/math_funcs.h | |
parent | d5579b15062b61c71ea58f0963a99685101bb4a2 (diff) | |
parent | 092f84642c89a4257176535da61e6050a8cc6dbb (diff) |
Merge pull request #2538 from akien-mga/polyphony
Small renaming and bug fixing in SamplePlayer
Diffstat (limited to 'core/math/math_funcs.h')
-rw-r--r-- | core/math/math_funcs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/math/math_funcs.h b/core/math/math_funcs.h index 33175ed2fc..ec089ebc8b 100644 --- a/core/math/math_funcs.h +++ b/core/math/math_funcs.h @@ -79,9 +79,9 @@ public: return Math::log( p_linear ) * 8.6858896380650365530225783783321; } - static inline double db2linear(double p_linear) { + static inline double db2linear(double p_db) { - return Math::exp( p_linear * 0.11512925464970228420089957273422 ); + return Math::exp( p_db * 0.11512925464970228420089957273422 ); } static bool is_nan(double p_val); |