aboutsummaryrefslogtreecommitdiff
path: root/src/pong.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pong.c')
-rw-r--r--src/pong.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/pong.c b/src/pong.c
index c2deb50..9d269ab 100644
--- a/src/pong.c
+++ b/src/pong.c
@@ -28,9 +28,9 @@
static char *version = "pong v0.1, ported by Olaf Matthes <olaf.matthes@gmx.de>\n"
" written for Max by Richard Dudas";
-typedef struct pong
-{
- t_object x_obj;
+typedef struct pong
+{
+ t_object x_obj;
t_outlet *p_bounceout;
t_outlet *p_handout;
t_outlet *p_velout;
@@ -250,7 +250,7 @@ static void pong_force(t_pong *x, t_floatarg n)
static t_class *pong_class;
static void *pong_new(t_floatarg n)
-{
+{
t_pong *x = (t_pong *)pd_new(pong_class);
x->p_klok = clock_new(x, (t_method)pong_tick);
@@ -293,10 +293,10 @@ static void *pong_new(t_floatarg n)
x->p_velout = outlet_new(&x->x_obj, gensym("float"));
x->p_heightout = outlet_new(&x->x_obj, gensym("float"));
- return (x);
+ return (x);
}
-#ifndef MAXLIB
+#ifndef MAXLIB
void pong_setup(void)
{
pong_class = class_new(gensym("pong"), (t_newmethod)pong_new,
@@ -329,4 +329,4 @@ void maxlib_pong_setup(void)
#else
class_sethelpsymbol(pong_class, gensym("maxlib/help-pong.pd"));
#endif
-} \ No newline at end of file
+}