lift reduction increase threshold

This commit is contained in:
Green Sky 2024-05-27 18:07:19 +02:00
parent 319e754aff
commit 1231e792a7
No known key found for this signature in database

View File

@ -7,7 +7,7 @@ void CUBIC::updateReductionTimer(float time_delta) {
const auto now {getTimeNow()};
// only keep updating while the cca interaction is not too long ago
if (now - _time_point_last_update <= getCurrentDelay()*2.f) {
if (now - _time_point_last_update <= getCurrentDelay()*4.f) {
_time_since_reduction += time_delta;
}
}