Skip to content

Commit 1394fa6

Browse files
author
Nathan Ho
committed
expand on explanation of why priming the pump is necessary
1 parent 4711fb0 commit 1394fa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

01a-BoringMixer/BoringMixer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ void BoringMixer_Ctor(BoringMixer* unit) {
2121
// set a calculation function. for now, we only have one calculation function.
2222
SETCALC(BoringMixer_next);
2323
// calculate one sample of output.
24-
// this allows plugging into other ugens with initial-rate inputs
24+
// if you don't do this, downstream ugens might access garbage memory in their Ctor functions.
2525
BoringMixer_next(unit, 1);
2626
}
2727

0 commit comments

Comments
 (0)