summaryrefslogtreecommitdiff
path: root/src/mdaPiano.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mdaPiano.cpp')
-rw-r--r--src/mdaPiano.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mdaPiano.cpp b/src/mdaPiano.cpp
index 7341ee9..ae463f4 100644
--- a/src/mdaPiano.cpp
+++ b/src/mdaPiano.cpp
@@ -150,11 +150,12 @@ void mdaPiano::handle_midi(uint32_t size, unsigned char* data) {
case 0x78:
//all notes off
case 0x7b:
- default:
for(short v=0; v<NVOICES; v++) {
voices[v]->reset();
}
break;
+
+ default: break;
}
break;