From 3d02da998f4364a4b3fea9c3bdb34f73fce31d79 Mon Sep 17 00:00:00 2001 From: Owen Green Date: Thu, 4 Jun 2020 15:50:07 +0100 Subject: [PATCH] FluidBufNMF: Fix Ugen construction and trigger argument passing from *kr --- release-packaging/Classes/FluidBufNMF.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-packaging/Classes/FluidBufNMF.sc b/release-packaging/Classes/FluidBufNMF.sc index 4ffcd7b..3b7dc09 100644 --- a/release-packaging/Classes/FluidBufNMF.sc +++ b/release-packaging/Classes/FluidBufNMF.sc @@ -18,7 +18,7 @@ FluidBufNMF : UGen { } *kr {|source, startFrame = 0, numFrames = -1, startChan = 0, numChans = -1, resynth, bases, basesMode = 0, activations, actMode = 0, components = 1, iterations = 100, windowSize = 1024, hopSize = -1, fftSize = -1, windowType = 0, randomSeed = -1, trig = 1| - ^this.multiNew(\control,source, startFrame, numFrames, startChan, numChans, resynth, bases, basesMode, activations, actMode, components, iterations, windowSize, hopSize, fftSize, trig); + ^this.new1(\control,source, startFrame, numFrames, startChan, numChans, resynth, bases, basesMode, activations, actMode, components, iterations, windowSize, hopSize, fftSize, trig:trig); }