summaryrefslogtreecommitdiff
path: root/libs/ardour/utils.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-07-15 23:18:13 +0200
committerRobin Gareus <robin@gareus.org>2015-07-15 23:18:13 +0200
commit3a5ac7f37fe42d3402ea3d1ecf4f81375b5a99c0 (patch)
tree32898703421c1d4f0d65f87ad1cf3fd38ffba840 /libs/ardour/utils.cc
parent84485a4cf2278d4b91a4d7b2b612672544a1bbaa (diff)
update existing dpm meter-falloff config to new fastest.
Diffstat (limited to 'libs/ardour/utils.cc')
-rw-r--r--libs/ardour/utils.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/libs/ardour/utils.cc b/libs/ardour/utils.cc
index 2ada8ce79b..aa9ea35542 100644
--- a/libs/ardour/utils.cc
+++ b/libs/ardour/utils.cc
@@ -525,11 +525,8 @@ ARDOUR::meter_falloff_to_float (MeterFalloff falloff)
case MeterFalloffModerate:
return METER_FALLOFF_MODERATE;
case MeterFalloffFast:
- return METER_FALLOFF_FAST;
- case MeterFalloffFaster:
- return METER_FALLOFF_FASTER;
+ case MeterFalloffFaster: // backwards compat enum MeterFalloff
case MeterFalloffFastest:
- return METER_FALLOFF_FASTEST;
default:
return METER_FALLOFF_FAST;
}