OSC: make some more paths work with or without a parameter.
This commit is contained in:
parent
379ad3357d
commit
1eb18f8e27
@ -4031,21 +4031,21 @@ OSC::cue_parse (const char *path, const char* types, lo_arg **argv, int argc, lo
|
|||||||
}
|
}
|
||||||
else if (!strncmp (path, "/cue/connect", 12)) {
|
else if (!strncmp (path, "/cue/connect", 12)) {
|
||||||
// Connect to default Aux bus
|
// Connect to default Aux bus
|
||||||
if (argv[0]->i) {
|
if ((!argc) || argv[0]->i) {
|
||||||
cue_set (1, msg);
|
cue_set (1, msg);
|
||||||
}
|
}
|
||||||
ret = 0;
|
ret = 0;
|
||||||
}
|
}
|
||||||
else if (!strncmp (path, "/cue/next_aux", 13)) {
|
else if (!strncmp (path, "/cue/next_aux", 13)) {
|
||||||
// switch to next Aux bus
|
// switch to next Aux bus
|
||||||
if (argv[0]->i) {
|
if ((!argc) || argv[0]->i) {
|
||||||
cue_next (msg);
|
cue_next (msg);
|
||||||
}
|
}
|
||||||
ret = 0;
|
ret = 0;
|
||||||
}
|
}
|
||||||
else if (!strncmp (path, "/cue/previous_aux", 17)) {
|
else if (!strncmp (path, "/cue/previous_aux", 17)) {
|
||||||
// switch to previous Aux bus
|
// switch to previous Aux bus
|
||||||
if (argv[0]->i) {
|
if ((!argc) || argv[0]->i) {
|
||||||
cue_previous (msg);
|
cue_previous (msg);
|
||||||
}
|
}
|
||||||
ret = 0;
|
ret = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user