diff options
author | N.N. <krzyszcz@users.sourceforge.net> | 2005-01-11 10:33:23 +0000 |
---|---|---|
committer | N.N. <krzyszcz@users.sourceforge.net> | 2005-01-11 10:33:23 +0000 |
commit | 6435314717c5fb8fa062eb682c72c8df095b1be3 (patch) | |
tree | 484d02446358890397a755fc144d4ecf25b38f2d /shared/sickle/sic.c | |
parent | b89456a346e176c4dc536e7de8f14b152cb2b15b (diff) |
svf~: args parsing; prepend/Append: bang handling; seq: pause, continue, goto; many maxmode changes
svn path=/trunk/externals/miXed/; revision=2490
Diffstat (limited to 'shared/sickle/sic.c')
-rw-r--r-- | shared/sickle/sic.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/shared/sickle/sic.c b/shared/sickle/sic.c index 4557c4b..3630b2b 100644 --- a/shared/sickle/sic.c +++ b/shared/sickle/sic.c @@ -60,9 +60,8 @@ t_float *sic_makecostable(int *sizep) if (sz >= *sizep) break; #ifdef SIC_DEBUG - fprintf(stderr, - "request for a costable of %d points (effective %d, ndx %d)\n", - *sizep, sz, ndx); + loudbug_post("request for a costable of %d points (effective %d, ndx %d)", + *sizep, sz, ndx); #endif *sizep = sz; if (sic_costables[ndx]) @@ -77,7 +76,7 @@ t_float *sic_makecostable(int *sizep) if (table) { #ifdef SIC_DEBUG - fprintf(stderr, "got %d points of a costable\n", cnt); + loudbug_post("got %d points of a costable", cnt); #endif while (cnt--) { @@ -105,7 +104,7 @@ void sic_setup(t_class *c, void *dspfn, void *floatfn) t_shared_wrappy wrappy; wrappy.w_d = SHARED_UNITBIT32 + 0.5; if ((unsigned)wrappy.w_i[SHARED_LOWOFFSET] != 0x80000000) - bug("sic_setup: unexpected machine alignment"); + loudbug_bug("sic_setup: unexpected machine alignment"); checked = 1; } if (floatfn != SIC_NOMAINSIGNALIN) |