* MIDI control lanes: Set Interpolationtype according to Parameter

git-svn-id: svn://localhost/ardour2/branches/3.0@4452 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Hans Baier 2009-01-28 04:55:31 +00:00
parent 6c538ab719
commit 3705a2d630
15 changed files with 118 additions and 28 deletions

View file

@ -987,14 +987,17 @@ 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;
}
}