mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 05:36:31 +01:00
remove unused member variable
This commit is contained in:
parent
088e4bca5a
commit
08ab8fc58a
3 changed files with 1 additions and 3 deletions
|
|
@ -118,7 +118,6 @@ protected:
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
Flag _flags;
|
Flag _flags;
|
||||||
uint32_t i_am_the_modifier;
|
|
||||||
bool _slaved;
|
bool _slaved;
|
||||||
bool in_set_state;
|
bool in_set_state;
|
||||||
samplepos_t playback_sample;
|
samplepos_t playback_sample;
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,6 @@ const string DiskIOProcessor::state_node_name = X_("DiskIOProcessor");
|
||||||
DiskIOProcessor::DiskIOProcessor (Session& s, string const & str, Flag f)
|
DiskIOProcessor::DiskIOProcessor (Session& s, string const & str, Flag f)
|
||||||
: Processor (s, str)
|
: Processor (s, str)
|
||||||
, _flags (f)
|
, _flags (f)
|
||||||
, i_am_the_modifier (false)
|
|
||||||
, _slaved (false)
|
, _slaved (false)
|
||||||
, in_set_state (false)
|
, in_set_state (false)
|
||||||
, playback_sample (0)
|
, playback_sample (0)
|
||||||
|
|
|
||||||
|
|
@ -212,7 +212,7 @@ DiskReader::playlist_changed (const PropertyChange&)
|
||||||
void
|
void
|
||||||
DiskReader::playlist_modified ()
|
DiskReader::playlist_modified ()
|
||||||
{
|
{
|
||||||
if (!i_am_the_modifier && !overwrite_queued) {
|
if (!overwrite_queued) {
|
||||||
_session.request_overwrite_buffer (_route);
|
_session.request_overwrite_buffer (_route);
|
||||||
overwrite_queued = true;
|
overwrite_queued = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue