summaryrefslogtreecommitdiff
path: root/libs/surfaces
diff options
context:
space:
mode:
Diffstat (limited to 'libs/surfaces')
-rw-r--r--libs/surfaces/cc121/cc121.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaces/cc121/cc121.cc b/libs/surfaces/cc121/cc121.cc
index 800605c9f7..241abb1518 100644
--- a/libs/surfaces/cc121/cc121.cc
+++ b/libs/surfaces/cc121/cc121.cc
@@ -410,8 +410,8 @@ CC121::encoder_handler (MIDI::Parser &, MIDI::EventTwoBytes* tb)
if (_current_stripable) {
/* Get amount of change (encoder clicks) * (change per click)*/
/*Create an exponential curve*/
- float curve = sign * pow(adj, (1.0 + 10.0) / 10.0);
- adj = curve * (31 / 1000.0);
+ float curve = sign * powf (adj, (1.f + 10.f) / 10.f);
+ adj = curve * (31.f / 1000.f);
ardour_pan_azimuth (adj);
}
break;