aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flext.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-11-03 20:29:28 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-11-03 20:29:28 +0000
commit0f833c72de82b8d9fdcd53b4f10ffdb986382c85 (patch)
treec06f182c71fdf626dab5397fdea38173543e0b77 /externals/grill/flext/source/flext.cpp
parenta8374dc0b19440ce5d1dcdda954421a4d942c451 (diff)
update docs
updated build system for Max with MinGW fixed and cleaned up library related stuff, especially co-existance of Max message and DSP library objects svn path=/trunk/; revision=3828
Diffstat (limited to 'externals/grill/flext/source/flext.cpp')
-rw-r--r--externals/grill/flext/source/flext.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/externals/grill/flext/source/flext.cpp b/externals/grill/flext/source/flext.cpp
index 6c598500..f332ce65 100644
--- a/externals/grill/flext/source/flext.cpp
+++ b/externals/grill/flext/source/flext.cpp
@@ -251,11 +251,12 @@ void flext_base::cb_dsp(flext_hdr *c,t_signal **sp)
flext_dsp *obj;
#ifdef FLEXT_DEBUG
- obj = dynamic_cast<flext_dsp *>(bobj);
+ obj = dynamic_cast<flext_dsp *>(bobj);
#else
obj = static_cast<flext_dsp *>(bobj);
#endif
+ FLEXT_ASSERT(obj);
obj->SetupDsp(sp);
}