mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
*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:
parent
dcc25d795b
commit
fe4e98a729
1 changed files with 3 additions and 0 deletions
|
|
@ -123,17 +123,20 @@ Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>& seq, Time t
|
||||||
#ifdef DEBUG_SEQUENCE
|
#ifdef DEBUG_SEQUENCE
|
||||||
debugout << "Iterator: CC " << i->first.id() << " (size " << i->second->list()->size()
|
debugout << "Iterator: CC " << i->first.id() << " (size " << i->second->list()->size()
|
||||||
<< ") has no events past " << t << endl;
|
<< ") has no events past " << t << endl;
|
||||||
|
#endif
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
assert(x >= 0);
|
assert(x >= 0);
|
||||||
|
|
||||||
|
/*
|
||||||
if (y < i->first.min() || y > i->first.max()) {
|
if (y < i->first.min() || y > i->first.max()) {
|
||||||
errorout << "ERROR: Controller " << i->first.symbol() << " value " << y
|
errorout << "ERROR: Controller " << i->first.symbol() << " value " << y
|
||||||
<< " out of range [" << i->first.min() << "," << i->first.max()
|
<< " out of range [" << i->first.min() << "," << i->first.max()
|
||||||
<< "], event ignored" << endl;
|
<< "], event ignored" << endl;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
const ControlIterator new_iter(i->second->list(), x, y);
|
const ControlIterator new_iter(i->second->list(), x, y);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue