Update of /cvsroot/pure-data/externals/miXed/shared/sickle In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23957/shared/sickle
Modified Files: arsic.c sic.c Log Message: svf~: args parsing; prepend/Append: bang handling; seq: pause, continue, goto; many maxmode changes
Index: sic.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/shared/sickle/sic.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** sic.c 10 Dec 2004 20:47:04 -0000 1.2 --- sic.c 11 Jan 2005 10:33:21 -0000 1.3 *************** *** 61,67 **** break; #ifdef SIC_DEBUG ! fprintf(stderr, ! "request for a costable of %d points (effective %d, ndx %d)\n", ! *sizep, sz, ndx); #endif *sizep = sz; --- 61,66 ---- break; #ifdef SIC_DEBUG ! loudbug_post("request for a costable of %d points (effective %d, ndx %d)", ! *sizep, sz, ndx); #endif *sizep = sz; *************** *** 78,82 **** { #ifdef SIC_DEBUG ! fprintf(stderr, "got %d points of a costable\n", cnt); #endif while (cnt--) --- 77,81 ---- { #ifdef SIC_DEBUG ! loudbug_post("got %d points of a costable", cnt); #endif while (cnt--) *************** *** 106,110 **** wrappy.w_d = SHARED_UNITBIT32 + 0.5; if ((unsigned)wrappy.w_i[SHARED_LOWOFFSET] != 0x80000000) ! bug("sic_setup: unexpected machine alignment"); checked = 1; } --- 105,109 ---- wrappy.w_d = SHARED_UNITBIT32 + 0.5; if ((unsigned)wrappy.w_i[SHARED_LOWOFFSET] != 0x80000000) ! loudbug_bug("sic_setup: unexpected machine alignment"); checked = 1; }
Index: arsic.c =================================================================== RCS file: /cvsroot/pure-data/externals/miXed/shared/sickle/arsic.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** arsic.c 23 May 2003 12:29:53 -0000 1.1.1.1 --- arsic.c 11 Jan 2005 10:33:21 -0000 1.2 *************** *** 9,12 **** --- 9,13 ---- #include "m_pd.h" #include "shared.h" + #include "common/loud.h" #include "common/vefl.h" #include "sickle/sic.h" *************** *** 26,30 **** (t_garray *)pd_findbyclass(x->s_mononame, garray_class); if (ap) garray_redraw(ap); ! else if (x->s_vectors[0]) bug("arsic_redraw 1"); } else if (*x->s_stub) --- 27,31 ---- (t_garray *)pd_findbyclass(x->s_mononame, garray_class); if (ap) garray_redraw(ap); ! else if (x->s_vectors[0]) loudbug_bug("arsic_redraw 1"); } else if (*x->s_stub) *************** *** 36,40 **** (t_garray *)pd_findbyclass(x->s_channames[ch], garray_class); if (ap) garray_redraw(ap); ! else if (x->s_vectors[ch]) bug("arsic_redraw 2"); } } --- 37,41 ---- (t_garray *)pd_findbyclass(x->s_channames[ch], garray_class); if (ap) garray_redraw(ap); ! else if (x->s_vectors[ch]) loudbug_bug("arsic_redraw 2"); } } *************** *** 123,127 **** dsp_addv(perf, x->s_nperfargs, x->s_perfargs); } ! else bug("arsic_dsp"); }
--- 124,128 ---- dsp_addv(perf, x->s_nperfargs, x->s_perfargs); } ! else loudbug_bug("arsic_dsp"); }