summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Baier <hansfbaier@googlemail.com>2009-02-11 00:00:41 +0000
committerHans Baier <hansfbaier@googlemail.com>2009-02-11 00:00:41 +0000
commitfe4e98a72987f197239a025413bfddb4c29b8ba8 (patch)
treed5084bb1ac26f70d77648ff8719d3b7c9a05c812
parentdcc25d795b3c3d796448a9d033f6b4dff79d1850 (diff)
*Evoral: Sequence: forgot to commit that
git-svn-id: svn://localhost/ardour2/branches/3.0@4524 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--libs/evoral/src/Sequence.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/evoral/src/Sequence.cpp b/libs/evoral/src/Sequence.cpp
index 0cf5fe80ed..0e96b5019e 100644
--- a/libs/evoral/src/Sequence.cpp
+++ b/libs/evoral/src/Sequence.cpp
@@ -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);