13
0

another -Wabsolute-value fix

This commit is contained in:
Robin Gareus 2015-09-02 22:57:16 +02:00
parent c7b64803d9
commit 30af404def

View File

@ -388,7 +388,7 @@ PannerShell::run (BufferSet& inbufs, BufferSet& outbufs, framepos_t start_frame,
// Speed quietning
gain_t gain_coeff = GAIN_COEFF_UNITY;
if (fabsf(_session.transport_speed()) > 1.5f && Config->get_quieten_at_speed ()) {
if (fabs(_session.transport_speed()) > 1.5 && Config->get_quieten_at_speed ()) {
gain_coeff = speed_quietning;
}