diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-09-27 03:26:20 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-09-27 03:26:20 +0000 |
commit | 348c734ef0df9554484962cef07866ae356f6aa7 (patch) | |
tree | e6f7a42dc8a5e7866c7ada397f6e0a93f040fc6e /cyclone/hammer/Uzi.c | |
parent | 856867b34d0037667064a7d4b192f7afbafe5dfc (diff) |
used class_addcreator to declare cyclone/class names for the lowercase version otherwise we get the 1000 can't open error
svn path=/trunk/externals/miXed/; revision=15361
Diffstat (limited to 'cyclone/hammer/Uzi.c')
-rw-r--r-- | cyclone/hammer/Uzi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cyclone/hammer/Uzi.c b/cyclone/hammer/Uzi.c index ff85368..ecd218c 100644 --- a/cyclone/hammer/Uzi.c +++ b/cyclone/hammer/Uzi.c @@ -100,6 +100,7 @@ void Uzi_setup(void) (t_newmethod)Uzi_new, 0, sizeof(t_Uzi), 0, A_DEFFLOAT, 0); class_addcreator((t_newmethod)Uzi_new, gensym("uzi"), A_DEFFLOAT, 0); + class_addcreator((t_newmethod)Uzi_new, gensym("cyclone/uzi"), A_DEFFLOAT, 0); class_addbang(Uzi_class, Uzi_bang); class_addfloat(Uzi_class, Uzi_float); class_addmethod(Uzi_class, (t_method)Uzi_pause, gensym("pause"), 0); |