aboutsummaryrefslogtreecommitdiff
path: root/modules/matrix.c
diff options
context:
space:
mode:
authorTom Schouten <doelie@users.sourceforge.net>2003-09-12 22:26:57 +0000
committerTom Schouten <doelie@users.sourceforge.net>2003-09-12 22:26:57 +0000
commit494a07a361fe4ee0e54f77468a976b1a77818770 (patch)
treeb784b32b2a29e379c6ae5947cdcdcdaadde72b5e /modules/matrix.c
parent9f8757ccf742d984bd1c1a5d1e5906e9fd50784e (diff)
creb 0.9.0
svn path=/trunk/externals/creb/; revision=956
Diffstat (limited to 'modules/matrix.c')
-rw-r--r--modules/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/matrix.c b/modules/matrix.c
index 6fd55b7..b59d4d6 100644
--- a/modules/matrix.c
+++ b/modules/matrix.c
@@ -140,10 +140,10 @@ static void *matrix_new(t_floatarg order)
return (void *)x;
}
-void matrix_tilde_setup(void)
+void bmatrix_tilde_setup(void)
{
//post("matrix~ v0.1");
- matrix_class = class_new(gensym("matrix~"), (t_newmethod)matrix_new,
+ matrix_class = class_new(gensym("bmatrix~"), (t_newmethod)matrix_new,
(t_method)matrix_free, sizeof(t_matrix), 0, A_DEFFLOAT, 0);
CLASS_MAINSIGNALIN(matrix_class, t_matrix, x_f);
class_addmethod(matrix_class, (t_method)matrix_dsp, gensym("dsp"), 0);