diff options
author | Martin Peach <mrpeach@users.sourceforge.net> | 2010-05-04 04:24:03 +0000 |
---|---|---|
committer | Martin Peach <mrpeach@users.sourceforge.net> | 2010-05-04 04:24:03 +0000 |
commit | d86deb5d9767a929df01100f2cd8b1fe56232c6a (patch) | |
tree | f78ec0c1ce3f978531b5f406455ebe0c4a47a983 | |
parent | 8255bf1d63bcd9672126d7f2d7f8aca4c813987b (diff) |
More debug...missing terminator is flagged.
svn path=/trunk/externals/mrpeach/; revision=13492
-rw-r--r-- | slipdec/slipdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/slipdec/slipdec.c b/slipdec/slipdec.c index 88eb953..d09e34f 100644 --- a/slipdec/slipdec.c +++ b/slipdec/slipdec.c @@ -96,6 +96,7 @@ static void slipdec_list(t_slipdec *x, t_symbol *s, int ac, t_atom *av) }
if (0 != x->x_slip_length)
{
+ if(SLIP_END != c) isSLIP = 0;
outlet_float(x->x_status_out, isSLIP);
outlet_list(x->x_slipdec_out, &s_list, x->x_slip_length, x->x_slip_buf);
}
|