should probably resolve MIDI notes when loop bounds change

We don't really need to do this if the bounds have moved "outwards", but
at present we don't know if that is the case, so be safe and resolve in
case the loop bounds moved "inwards" and we would otherwise get stuck notes
caused by the now-missing noteOffs
This commit is contained in:
Paul Davis
2019-12-10 21:27:10 -07:00
parent e46c45f6f0
commit 3dafaaf2df

View File

@@ -526,7 +526,7 @@ DiskReader::set_pending_overwrite (OverwriteReason why)
overwrite_offset = c->front()->rbuf->read_ptr();
}
if (why & (PlaylistModified|PlaylistChanged)) {
if (why & (LoopChanged|PlaylistModified|PlaylistChanged)) {
run_must_resolve = true;
}