summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2016-07-26 14:47:12 -0700
committerLen Ovens <len@ovenwerks.net>2016-07-26 14:47:12 -0700
commitc10e57129dd7d6f6c7cb4ea819c11799c4ff6441 (patch)
tree86eea02587a1f35d1142e151a2fe78a0d3a43855
parent69752813db02634037734851f38922ff023cfafd (diff)
OSC: Fix cut-n-paste mistake5.0-rc1
-rw-r--r--libs/surfaces/osc/osc.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/surfaces/osc/osc.cc b/libs/surfaces/osc/osc.cc
index a696ea884b..5d05372931 100644
--- a/libs/surfaces/osc/osc.cc
+++ b/libs/surfaces/osc/osc.cc
@@ -956,22 +956,22 @@ OSC::catchall (const char *path, const char* types, lo_arg **argv, int argc, lo_
}
else if (!strncmp (path, "/select/eq_gain/", 16) && strlen (path) > 16) {
int ssid = atoi (&path[16]);
- route_solo (ssid, argv[0]->f == 1.0, msg);
+ sel_eq_gain (ssid, argv[0]->f, msg);
ret = 0;
}
else if (!strncmp (path, "/select/eq_freq/", 16) && strlen (path) > 16) {
int ssid = atoi (&path[16]);
- route_solo (ssid, argv[0]->f == 1.0, msg);
+ sel_eq_freq (ssid, argv[0]->f , msg);
ret = 0;
}
else if (!strncmp (path, "/select/eq_q/", 13) && strlen (path) > 13) {
int ssid = atoi (&path[13]);
- route_solo (ssid, argv[0]->f == 1.0, msg);
+ sel_eq_q (ssid, argv[0]->f, msg);
ret = 0;
}
else if (!strncmp (path, "/select/eq_shape/", 17) && strlen (path) > 17) {
int ssid = atoi (&path[17]);
- route_solo (ssid, argv[0]->f == 1.0, msg);
+ sel_eq_shape (ssid, argv[0]->f, msg);
ret = 0;
}
}