summaryrefslogtreecommitdiff
path: root/src/mdaPiano.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mdaPiano.cpp')
-rw-r--r--src/mdaPiano.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/mdaPiano.cpp b/src/mdaPiano.cpp
index 3e44cc7..fbd0665 100644
--- a/src/mdaPiano.cpp
+++ b/src/mdaPiano.cpp
@@ -144,10 +144,13 @@ void mdaPiano::handle_midi(uint32_t size, unsigned char* data) {
case 0x40: //sustain pedal
case 0x42: //sustenuto pedal
sustain = data[2] & 0x40;
- if(sustain==0)
- {
- notes[npos++] = SUSTAIN; //end all sustained notes
- notes[npos++] = 0;
+
+ for (unsigned i = 0; i < NVOICES; ++i) {
+ voices[i]->set_sustain(sustain);
+ //if pedal was released: dampen sustained notes
+ if((sustain==0) && (voices[i]->is_sustained())) {
+ voices[i]->release(0);
+ }
}
break;