13
0

remove unused member variable

This commit is contained in:
Paul Davis 2019-10-16 08:04:23 -06:00
parent 088e4bca5a
commit 08ab8fc58a
3 changed files with 1 additions and 3 deletions

View File

@ -118,7 +118,6 @@ protected:
protected:
Flag _flags;
uint32_t i_am_the_modifier;
bool _slaved;
bool in_set_state;
samplepos_t playback_sample;

View File

@ -50,7 +50,6 @@ const string DiskIOProcessor::state_node_name = X_("DiskIOProcessor");
DiskIOProcessor::DiskIOProcessor (Session& s, string const & str, Flag f)
: Processor (s, str)
, _flags (f)
, i_am_the_modifier (false)
, _slaved (false)
, in_set_state (false)
, playback_sample (0)

View File

@ -212,7 +212,7 @@ DiskReader::playlist_changed (const PropertyChange&)
void
DiskReader::playlist_modified ()
{
if (!i_am_the_modifier && !overwrite_queued) {
if (!overwrite_queued) {
_session.request_overwrite_buffer (_route);
overwrite_queued = true;
}