Skip to content

Commit

Permalink
class library: warning in node proxy, add newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
telephon committed Apr 24, 2016
1 parent 89eb60a commit c3ebe1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SCClassLibrary/JITLib/ProxySpace/ProxySynthDef.sc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ProxySynthDef : SynthDef {
};
// protect from accidentally wrong array shapes
if(output.containsSeqColl) {
"Synth output should be a flat array.\n%\nFlattened to: %\nSee NodeProxy helpfile:routing".format(output, output.flat).warn;
"Synth output should be a flat array.\n%\nFlattened to: %\nSee NodeProxy helpfile:routing\n\n".format(output, output.flat).warn;
output = output.flat;
};

Expand Down

0 comments on commit c3ebe1c

Please sign in to comment.