13
0

* Fixed bug: Discrete control lists are generally not played back

git-svn-id: svn://localhost/ardour2/branches/3.0@4454 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Hans Baier 2009-01-28 07:52:40 +00:00
parent 8048f0309f
commit d9416a3a6a

View File

@ -975,7 +975,7 @@ ControlList::rt_safe_earliest_event_discrete_unlocked (double start, double end,
const bool past_start = (inclusive ? first->when >= start : first->when > start);
/* Earliest points is in range, return it */
if (past_start >= start && first->when < end) {
if (past_start && first->when < end) {
x = first->when;
y = first->value;
@ -987,17 +987,14 @@ ControlList::rt_safe_earliest_event_discrete_unlocked (double start, double end,
assert(x >= start);
assert(x < end);
cerr << "returned something" << endl;
return true;
} else {
cerr << "not between start and end" << endl;
return false;
}
/* No points in range */
} else {
cerr << "no points in range" << endl;
return false;
}
}