13
0

*Evoral: Sequence: forgot to commit that

git-svn-id: svn://localhost/ardour2/branches/3.0@4524 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Hans Baier 2009-02-11 00:00:41 +00:00
parent dcc25d795b
commit fe4e98a729

View File

@ -123,17 +123,20 @@ Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>& seq, Time t
#ifdef DEBUG_SEQUENCE
debugout << "Iterator: CC " << i->first.id() << " (size " << i->second->list()->size()
<< ") has no events past " << t << endl;
#endif
continue;
}
assert(x >= 0);
/*
if (y < i->first.min() || y > i->first.max()) {
errorout << "ERROR: Controller " << i->first.symbol() << " value " << y
<< " out of range [" << i->first.min() << "," << i->first.max()
<< "], event ignored" << endl;
continue;
}
*/
const ControlIterator new_iter(i->second->list(), x, y);