Implement parameter linking to expression pedal.

This commit is contained in:
Tim LaBerge
2012-12-01 15:30:56 -08:00
parent 88819a795b
commit cf239da94c
5 changed files with 111 additions and 13 deletions

View File

@@ -166,6 +166,10 @@ format_value (XmlSettings *xml, guint value)
g_string_printf(buf, "%s", "");
break;
case VALUE_TYPE_POSID:
g_string_printf(buf, "%d", value);
break;
default:
g_warning("Unhandled value type %d", vtype);
break;
@@ -521,6 +525,8 @@ void push_message (GString *msg)
modifier_linkable_list(msg);
g_string_free(msg, TRUE);
create_pedal1_assign();
return;