aboutsummaryrefslogtreecommitdiff
path: root/src/multi.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-10 22:15:07 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 13:53:22 +0200
commitff6b00b82c7f3f1a1efae7ba00894604aa70a60d (patch)
tree16835feaeacf7f33da08e964fe72eb24d09f2657 /src/multi.c
parent7fc71ea46f7424a15cf39d0be2b9525fa6d5a1f0 (diff)
switched over the help files to the Pd standard name; removed the explicit helpfile declaration since its not needed and causes problems
svn path=/trunk/externals/maxlib/; revision=3878
Diffstat (limited to 'src/multi.c')
-rw-r--r--src/multi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/multi.c b/src/multi.c
index 2f5db67..a29e80f 100644
--- a/src/multi.c
+++ b/src/multi.c
@@ -93,7 +93,7 @@ void multi_setup(void)
class_addfloat(multi_class, multi_float);
class_addmethod(multi_class, (t_method)multi_ft1, gensym("ft1"), A_FLOAT, 0);
class_addbang(multi_class, (t_method)multi_bang);
- class_sethelpsymbol(multi_class, gensym("help-multi.pd"));
+
post(version);
}
#else
@@ -105,6 +105,6 @@ void maxlib_multi_setup(void)
class_addfloat(multi_class, multi_float);
class_addmethod(multi_class, (t_method)multi_ft1, gensym("ft1"), A_FLOAT, 0);
class_addbang(multi_class, (t_method)multi_bang);
- class_sethelpsymbol(multi_class, gensym("maxlib/help-multi.pd"));
+ class_sethelpsymbol(multi_class, gensym("maxlib/multi-help.pd"));
}
#endif