Skip to content
Snippets Groups Projects
Commit e44d8b35 authored by Albert Gräf's avatar Albert Gräf
Browse files

Fix incompatible behavior in route.

parent dcbb6371
No related branches found
No related tags found
No related merge requests found
......@@ -640,7 +640,7 @@ static void route_list(t_route *x, t_symbol *sel, int argc, t_atom *argv)
{
if (e->e_w.w_symbol == &s_float)
{
outlet_bang(e->e_outlet);
outlet_float(e->e_outlet, argv[0].a_w.w_float);
return;
}
}
......@@ -651,7 +651,7 @@ static void route_list(t_route *x, t_symbol *sel, int argc, t_atom *argv)
{
if (e->e_w.w_symbol == &s_symbol)
{
outlet_bang(e->e_outlet);
outlet_symbol(e->e_outlet, argv[0].a_w.w_symbol);
return;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment