diff options
Diffstat (limited to 'src/iem16_table.c')
-rw-r--r-- | src/iem16_table.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/iem16_table.c b/src/iem16_table.c index 91d9fc6..96daf88 100644 --- a/src/iem16_table.c +++ b/src/iem16_table.c @@ -92,10 +92,17 @@ static void table16_from(t_table16*x, t_symbol*s, int argc, t_atom*argv){ return; } s=atom_getsymbol(argv); argc--;argv++; +#if defined __WIN32__ || defined __WIN32 + // hmm, how do i import garray_class on w32?? + error("ack, windows hit the wall...tell me how to see garray_class"); + return; +#else if (!(a = (t_garray *)pd_findbyclass(s, garray_class))){ error("%s: no such array", s->s_name); return; - } else if (!garray_getfloatarray(a, &npoints, &vec)){ + } else +#endif + if (!garray_getfloatarray(a, &npoints, &vec)){ error("%s: bad template for tabread4", s->s_name); return; } |