Hi there, I was making some tests and saw that the order that you make audio connections or create tilde~ objects make a difference, and this affects when we&#39;re using [s~] / [r~].<div><br></div><div>The idea I had is that no matter what was going on, the sends and receives would ALWAYS be in sync with the audio conenction cords, meaning there would be no delay whatsoever. But that&#39;s not true, so I suspect this is some sort of a bug that should be noted.</div>
<div><br></div><div>check the following patches, they are the same, but one is &quot;ok&quot; (where the audio is cancelled) and the other &quot;not ok&quot; (where it isn&#39;t). The only difference is the order that the objects were created and connected.</div>
<div><br></div><div>I, for one, would like to live in a Pd world where it&#39;d always be &quot;ok&quot; no matter what... cause if we have these delays, it ends up being really bad, right?</div><div><br></div><div>what about you people? And is this too hard to &quot;fix&quot;? </div>
<div><br></div><div>cheers</div><div><br></div><div>The patches:</div><div><b><br></b></div><div><b>&quot;OK&quot;</b></div><div><div>#N canvas 223 59 450 300 10;</div><div>#X obj 99 162 -~;</div><div>#X obj 90 198 dac~;</div>
<div>#X obj 242 85 loadbang;</div><div>#X msg 242 114 \; pd dsp 1;</div><div>#X obj 114 111 s~ \$0-osc;</div><div>#X obj 114 133 r~ \$0-osc;</div><div>#X obj 99 73 osc~ 440;</div><div>#X connect 0 0 1 0;</div><div>#X connect 0 0 1 1;</div>
<div>#X connect 2 0 3 0;</div><div>#X connect 5 0 0 1;</div><div>#X connect 6 0 0 0;</div><div>#X connect 6 0 4 0;</div></div><div><br></div><div><b>&quot;NOT OK&quot;</b></div><div><div>#N canvas 223 59 450 300 10;</div>
<div>#X obj 99 73 osc~ 440;</div><div>#X obj 99 162 -~;</div><div>#X obj 90 198 dac~;</div><div>#X obj 242 85 loadbang;</div><div>#X msg 242 114 \; pd dsp 1;</div><div>#X obj 114 111 s~ \$0-osc;</div><div>#X obj 114 133 r~ \$0-osc;</div>
<div>#X connect 0 0 1 0;</div><div>#X connect 0 0 5 0;</div><div>#X connect 1 0 2 0;</div><div>#X connect 1 0 2 1;</div><div>#X connect 3 0 4 0;</div><div>#X connect 6 0 1 1;</div></div><div><br></div>