13
0

const-ification tweak

This commit is contained in:
Paul Davis 2021-05-08 09:19:50 -06:00
parent 6ca18bfcfd
commit 6b98e56da2

View File

@ -2001,7 +2001,7 @@ ARDOUR_UI::transport_ffwd_rewind (bool fwd)
// (keypress auto-repeat is 100ms)
const float maxspeed = Config->get_shuttle_max_speed();
float semitone_ratio = exp2f (1.0f/12.0f);
float octave_down = pow (1.0/semitone_ratio, 12.0);
const float octave_down = pow (1.0/semitone_ratio, 12.0);
float transport_speed = _session->actual_speed();
float speed;