13
0

OSC: make some more paths work with or without a parameter.

This commit is contained in:
Len Ovens 2017-05-05 08:58:49 -07:00
parent 379ad3357d
commit 1eb18f8e27

View File

@ -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)) {
// Connect to default Aux bus
if (argv[0]->i) {
if ((!argc) || argv[0]->i) {
cue_set (1, msg);
}
ret = 0;
}
else if (!strncmp (path, "/cue/next_aux", 13)) {
// switch to next Aux bus
if (argv[0]->i) {
if ((!argc) || argv[0]->i) {
cue_next (msg);
}
ret = 0;
}
else if (!strncmp (path, "/cue/previous_aux", 17)) {
// switch to previous Aux bus
if (argv[0]->i) {
if ((!argc) || argv[0]->i) {
cue_previous (msg);
}
ret = 0;