aboutsummaryrefslogtreecommitdiff
path: root/cyclone/hammer/MouseState.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-09-27 03:26:20 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-09-27 03:26:20 +0000
commit348c734ef0df9554484962cef07866ae356f6aa7 (patch)
treee6f7a42dc8a5e7866c7ada397f6e0a93f040fc6e /cyclone/hammer/MouseState.c
parent856867b34d0037667064a7d4b192f7afbafe5dfc (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/MouseState.c')
-rw-r--r--cyclone/hammer/MouseState.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cyclone/hammer/MouseState.c b/cyclone/hammer/MouseState.c
index 260cde2..085fdae 100644
--- a/cyclone/hammer/MouseState.c
+++ b/cyclone/hammer/MouseState.c
@@ -133,6 +133,7 @@ void MouseState_setup(void)
(t_method)MouseState_free,
sizeof(t_MouseState), 0, 0);
class_addcreator((t_newmethod)MouseState_new, gensym("mousestate"), 0, 0);
+ class_addcreator((t_newmethod)MouseState_new, gensym("cyclone/mousestate"), 0, 0);
class_addanything(MouseState_class, MouseState_anything);
class_addmethod(MouseState_class, (t_method)MouseState_doup,
gensym("_up"), A_FLOAT, 0);