1
Fork 0

send note off to all channels

This commit is contained in:
Leonard Ritter 2010-02-20 09:18:12 +01:00
parent a0b708d8a0
commit f3a071c11f
1 changed files with 3 additions and 1 deletions

View File

@ -171,7 +171,9 @@ void Player::stop() {
return;
playing = false;
seek(read_position);
rt_messages.all_notes_off(0);
for (int bus = 0; bus < MaxTracks; ++bus) {
rt_messages.all_notes_off(bus);
}
}
void Player::play() {