aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/fldsp.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-12-16 05:01:07 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-12-16 05:01:07 +0000
commitcb200bed741bf550e77a818947fcfd9c72301278 (patch)
treef09cdc27886330419ad15d5cec98225d1f1aff61 /externals/grill/flext/source/fldsp.cpp
parentf106d86ba8dbdf3c50f2c8fa2cd971114a485920 (diff)
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
Diffstat (limited to 'externals/grill/flext/source/fldsp.cpp')
-rw-r--r--externals/grill/flext/source/fldsp.cpp10
1 files changed, 4 insertions, 6 deletions
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),