summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Baier <hansfbaier@googlemail.com>2012-10-12 06:04:06 +0000
committerHans Baier <hansfbaier@googlemail.com>2012-10-12 06:04:06 +0000
commite36c855464d0646e499b22ae4a45a03f80d27ab6 (patch)
treeaf8cb145d385f3005b7a8b46f36600bd83744506
parent2625fd9be8304646d77e4f870d0b00e795ce886c (diff)
issue 0005121: added comment to source. Sorry, last commit was for issue 0005121, not 0005120, copied from the wrong line :[
git-svn-id: svn://localhost/ardour2/branches/3.0@13252 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--libs/evoral/src/Sequence.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/evoral/src/Sequence.cpp b/libs/evoral/src/Sequence.cpp
index d26d9d0023..71bdcb7c03 100644
--- a/libs/evoral/src/Sequence.cpp
+++ b/libs/evoral/src/Sequence.cpp
@@ -339,6 +339,8 @@ Sequence<Time>::const_iterator::operator++()
// Use the next note off iff it's earlier or the same time as the note on
#ifdef PERCUSSIVE_IGNORE_NOTE_OFFS
+ // issue 0005121 When in Percussive mode, all note offs go missing, which jams all MIDI instruments that they stop playing
+ // remove this code since it drowns MIDI instruments by stealing all voices and crashes LinuxSampler
if (!_seq->percussive() && (!_active_notes.empty())) {
#else
if ((!_active_notes.empty())) {