[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[sc-users] JITLib Meta_RecNodeProxy-newFrom



Hey,

RecNodeProxy:

*newFrom { arg proxy, numChannels;
	^this.audio(proxy.server, numChannels ? proxy.numChannels)
		.source_({ proxy.ar(numChannels) });
}

shouldn't this be


*newFrom { arg proxy, numChannels;
	^this.audio(proxy.server, numChannels ? proxy.numChannels)
		.source_({ proxy.ar(numChannels ? proxy.numChannels) });
}


??

regards
Till