[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[sc-dev] [commit] bufix to SynthDesc-readSynthDef
in the method SynthDesc-readSynthDef, UGen.buildSynthDef was set, but
never set back to nil.
// diff:
Index: SynthDesc.sc
===================================================================
RCS file:
/cvsroot/supercollider/SuperCollider3/build/SCClassLibrary/Common/Audio/SynthDesc.sc,v
retrieving revision 1.15
diff -p -b -B -r1.15 SynthDesc.sc
*** SynthDesc.sc 19 Sep 2004 21:46:29 -0000 1.15
--- SynthDesc.sc 3 Dec 2004 20:25:48 -0000
*************** SynthDesc {
*** 105,110 ****
--- 105,112 ----
constants = nil;
};
this.makeMsgFunc;
+ UGen.buildSynthDef = nil;
+
}
readUGenSpec { arg stream;
--
.