fixes a test breakage
This commit is contained in:
parent
f0480dc63c
commit
1f5d9a2612
1 changed files with 2 additions and 1 deletions
|
@ -7,9 +7,10 @@ dev_input = zeros(AudioIO.AudioSample, test_info.buf_size)
|
||||||
# A TestNode just renders out 1:buf_size each frame
|
# A TestNode just renders out 1:buf_size each frame
|
||||||
type TestNode <: AudioIO.AudioNode
|
type TestNode <: AudioIO.AudioNode
|
||||||
active::Bool
|
active::Bool
|
||||||
|
deactivate_cond::Condition
|
||||||
|
|
||||||
function TestNode()
|
function TestNode()
|
||||||
return new(false)
|
return new(false, Condition())
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue