diff options
-rw-r--r-- | backends/osc.md | 2 | ||||
-rw-r--r-- | backends/sacn.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/osc.md b/backends/osc.md index 61b3324..939c742 100644 --- a/backends/osc.md +++ b/backends/osc.md @@ -30,7 +30,7 @@ This is done by specifying *patterns* in the instance configuration using an ass ``` The pattern will be matched only against the local part (that is, the path excluding any configured instance root). -Patterns may contain the following expressions (conforming to the [OSC pattern matching specification](http://opensoundcontrol.org/spec-1_0)): +Patterns may contain the following expressions (conforming to the [OSC pattern matching specification](https://opensoundcontrol.stanford.edu/spec-1_0.html)): * `?` matches any single legal character * `*` matches zero or more legal characters * A comma-separated list of strings inside curly braces `{}` matches any of the strings diff --git a/backends/sacn.c b/backends/sacn.c index 4e01402..3c0cdab 100644 --- a/backends/sacn.c +++ b/backends/sacn.c @@ -314,7 +314,7 @@ static int sacn_transmit(instance* inst, sacn_output_universe* output){ .sequence = data->data.last_seq++, .options = 0, .universe = htobe16(data->uni), - .flags = htobe16(0x7000 | 0x0205), + .flags = htobe16(0x7000 | 0x020b), .vector = DMP_SET_PROPERTY, .format = 0xA1, .startcode_offset = 0, |