aboutsummaryrefslogtreecommitdiff
path: root/tbext/source/main.cpp
diff options
context:
space:
mode:
authorTim Blechmann <timblech@users.sourceforge.net>2004-03-30 18:49:02 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:11:54 +0200
commitfc4811ceddd4d2138d01e78b1c002a1582f9ee69 (patch)
tree5a2b8edab0fc7ba3f37ed5da23feb22c6c228077 /tbext/source/main.cpp
parentb37d7f4d59d1ec038f6920e7a44436558d84befe (diff)
added him~ object
svn path=/trunk/externals/tb/; revision=1525
Diffstat (limited to 'tbext/source/main.cpp')
-rw-r--r--tbext/source/main.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/tbext/source/main.cpp b/tbext/source/main.cpp
index 07a0713..bb7c517 100644
--- a/tbext/source/main.cpp
+++ b/tbext/source/main.cpp
@@ -40,7 +40,7 @@
#include <flext.h>
-#define TBEXT_VERSION "0.04"
+#define TBEXT_VERSION "0.05"
#if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 400)
#error upgrade your flext version!!!!!!
@@ -52,11 +52,10 @@ void ttbext_setup()
post("version "TBEXT_VERSION);
post("compiled on "__DATE__);
post("contains: tbroute(~), tbsig~, tbpow~, tbfft1~, tbfft2~, bufline~, fftgrrev~");
- post(" fftgrsort~, fftgrshuf~, rfftw~, rifftw~");
+ post(" fftgrsort~, fftgrshuf~, him~");
FLEXT_SETUP(tbroute);
FLEXT_DSP_SETUP(tbsroute);
- // FLEXT_DSP_SETUP(tbssel);
FLEXT_DSP_SETUP(tbsig);
FLEXT_DSP_SETUP(tbpow);
// FLEXT_DSP_SETUP(tbg7xx);
@@ -66,13 +65,9 @@ void ttbext_setup()
FLEXT_DSP_SETUP(fftgrsort);
FLEXT_DSP_SETUP(fftgrshuf);
FLEXT_DSP_SETUP(fftgrrev);
+ FLEXT_DSP_SETUP(him);
-#if (FFTW == 1)
- FLEXT_DSP_SETUP(rfftw);
- FLEXT_DSP_SETUP(rifftw);
-#endif
-
}