commit a7182360270fb152964e6e85c89af8afc6cb6b45 parent 5f4872d2980899e47669c6ad80836f82c4afd28c Author: Hans Petter Selasky <[email protected]> Date: Fri, 3 Apr 2020 12:03:45 +0200 Use floating point constant. Signed-off-by: Hans Petter Selasky <[email protected]> Diffstat:
M | src/Params/FilterParams.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Params/FilterParams.cpp b/src/Params/FilterParams.cpp @@ -469,7 +469,7 @@ float FilterParams::getq() const } float FilterParams::getfreqtracking(float notefreq) const { - return log2f(notefreq / 440.0f) * (freqtracking / 100.0); + return log2f(notefreq / 440.0f) * (freqtracking / 100.0f); } float FilterParams::getgain() const