diff options
Diffstat (limited to 'tab')
-rw-r--r-- | tab/tabosci~.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tab/tabosci~.c b/tab/tabosci~.c index d7cdc51..9936c77 100644 --- a/tab/tabosci~.c +++ b/tab/tabosci~.c @@ -42,7 +42,7 @@ THE POSSIBILITY OF SUCH DAMAGE. #include "m_pd.h" #include <math.h> -#define max(a,b) ( ((a) > (b)) ? (a) : (b) )
+#define max(a,b) ( ((a) > (b)) ? (a) : (b) ) #define min(a,b) ( ((a) < (b)) ? (a) : (b) ) /******************** tabosci~ ***********************/ @@ -173,7 +173,7 @@ static void *tabosci_tilde_new(t_symbol *s) x->x_f = 0; x->cutoff = 0; x->upsample = 1; - x->x_sr = 44100; + x->x_sr = 0; tabosci_tilde_cutoff(x,0); // comput filter coef return (x); } |