From cb200bed741bf550e77a818947fcfd9c72301278 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Thu, 16 Dec 2004 05:01:07 +0000 Subject: dropped support for Max UI objects fix for _long_ attribute dialogs delete project builder project (in favor of xcode) typo fixed in attribute editor add xcode project some fixes for OSX builds svn path=/trunk/; revision=2390 --- externals/grill/flext/source/fldsp.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'externals/grill/flext/source/fldsp.cpp') diff --git a/externals/grill/flext/source/fldsp.cpp b/externals/grill/flext/source/fldsp.cpp index 3344f4a1..2384c5fe 100644 --- a/externals/grill/flext/source/fldsp.cpp +++ b/externals/grill/flext/source/fldsp.cpp @@ -27,8 +27,8 @@ void flext_dsp::Setup(t_classid id) t_class *c = getClass(id); #if FLEXT_SYS == FLEXT_SYS_MAX -// dsp_initclass(); - dsp_initboxclass(); + dsp_initclass(); +// dsp_initboxclass(); add_dsp(c,cb_dsp); #elif FLEXT_SYS == FLEXT_SYS_PD CLASS_MAINSIGNALIN(c,flext_hdr,defsig); // float messages going into the left inlet are converted to signal @@ -46,15 +46,13 @@ flext_dsp::FLEXT_CLASSDEF(flext_dsp)(): srate(fts_dsp_get_sample_rate()), // should we set it? blksz(fts_dsp_get_tick_size()), #else - srate(sys_getsr()), // should we set it? - blksz(sys_getblksize()), + srate(sys_getsr()),blksz(sys_getblksize()), #endif #if FLEXT_SYS == FLEXT_SYS_PD chnsin(sys_get_inchannels()), chnsout(sys_get_outchannels()), #elif FLEXT_SYS == FLEXT_SYS_MAX - chnsin(sys_getch()), - chnsout(sys_getch()), + chnsin(0),chnsout(0), #elif FLEXT_SYS == FLEXT_SYS_JMAX #pragma message("not implemented") chnsin(0),chnsout(0), -- cgit v1.2.1