Browse Source

MPE: Change MPESynthesizer::voicesLock member from private to protected so that sub-classes can lock the voicedLock

tags/2021-05-28
hogliux 8 years ago
parent
commit
6e23c4806b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_basics/mpe/juce_MPESynthesiser.h

+ 1
- 1
modules/juce_audio_basics/mpe/juce_MPESynthesiser.h View File

@@ -297,11 +297,11 @@ protected:
//==============================================================================
OwnedArray<MPESynthesiserVoice> voices;
CriticalSection voicesLock;
private:
//==============================================================================
bool shouldStealVoices;
CriticalSection voicesLock;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MPESynthesiser)
};


Loading…
Cancel
Save