diff options
| -rw-r--r-- | lib/SampOsc.ck | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/SampOsc.ck b/lib/SampOsc.ck index 1aadbea..a6a57e6 100644 --- a/lib/SampOsc.ck +++ b/lib/SampOsc.ck @@ -5,11 +5,13 @@ public class SampOsc extends SndBuf { 1 => float __freq; /* pseudo-private */ - fun float freq(float f) + fun float + freq(float f) { return f => __freq; } - fun float freq() + fun float + freq() { return __freq; } |
