This commit is contained in:
Robin Gareus 2015-07-15 23:40:45 +02:00
parent 3a5ac7f37f
commit 9bf381db0a

View File

@ -553,14 +553,8 @@ ARDOUR::meter_falloff_from_float (float val)
else if (val <= METER_FALLOFF_MEDIUM) {
return MeterFalloffMedium;
}
else if (val <= METER_FALLOFF_FAST) {
return MeterFalloffFast;
}
else if (val <= METER_FALLOFF_FASTER) {
return MeterFalloffFaster;
}
else {
return MeterFalloffFastest;
return MeterFalloffFast;
}
}