diff options
-rw-r--r-- | grid.c | 2 | ||||
-rw-r--r-- | spigot~.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -674,7 +674,7 @@ static void grid_free(t_grid *x) void grid_setup(void) { - post ( grid_version ); + verbose(0, grid_version ); grid_class = class_new(gensym("grid"), (t_newmethod)grid_new, (t_method)grid_free, sizeof(t_grid), 0, A_GIMME, 0); class_addmethod(grid_class, (t_method)grid_click, gensym("click"), @@ -65,7 +65,7 @@ static void spigot_set(t_spigot *x, t_float f) void spigot_tilde_setup(void) { - post ( spigot_version ); + verbose(0, spigot_version ); spigot_class = class_new(gensym("spigot~"), (t_newmethod)spigot_new, 0, sizeof(t_spigot), 0, 0); CLASS_MAINSIGNALIN( spigot_class, t_spigot, x_f ); |