fix logic error that prevented MIDI playlists from being rendered at load time

An edit was required to force the render
This commit is contained in:
Paul Davis 2019-12-16 10:24:38 -07:00
parent 9ddc4fcce9
commit 0b4b53b821

View File

@ -253,7 +253,7 @@ DiskReader::use_playlist (DataType dt, boost::shared_ptr<Playlist> playlist)
take care of the buffer refill.
*/
if ((g_atomic_int_get (&_pending_overwrite) & PlaylistChanged) || prior_playlist) {
if (!(g_atomic_int_get (&_pending_overwrite) & PlaylistChanged) || prior_playlist) {
_session.request_overwrite_buffer (_track, PlaylistChanged);
}