mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-08 04:20:09 +00:00
Minor SVG fix. Added manual reset option to WaitableEvent. Made AudioFilterStreamer update channel numbers when the audio device changes.
This commit is contained in:
parent
f198f06e6a
commit
ca348c06d7
8 changed files with 53 additions and 26 deletions
|
|
@ -79,8 +79,8 @@ void CriticalSection::exit() const throw()
|
|||
}
|
||||
|
||||
//==============================================================================
|
||||
WaitableEvent::WaitableEvent() throw()
|
||||
: internal (CreateEvent (0, FALSE, FALSE, 0))
|
||||
WaitableEvent::WaitableEvent (const bool manualReset) throw()
|
||||
: internal (CreateEvent (0, manualReset ? TRUE : FALSE, FALSE, 0))
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue