diff options
author | David Robillard <d@drobilla.net> | 2020-11-27 20:18:41 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-27 21:52:29 +0100 |
commit | 10a9f00294c3a33477dee21980f91d1417b6ef21 (patch) | |
tree | 5fa81e66ffa8f5f22753ced48315db83a5237e9f /src/JackDriver.cpp | |
parent | 2146f229086ffe26888d74fffd4bd441bfdaecbe (diff) | |
download | patchage-10a9f00294c3a33477dee21980f91d1417b6ef21.tar.gz patchage-10a9f00294c3a33477dee21980f91d1417b6ef21.tar.bz2 patchage-10a9f00294c3a33477dee21980f91d1417b6ef21.zip |
Ensure that ports always have an ID
Diffstat (limited to 'src/JackDriver.cpp')
-rw-r--r-- | src/JackDriver.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/JackDriver.cpp b/src/JackDriver.cpp index a75aff4..5c08144 100644 --- a/src/JackDriver.cpp +++ b/src/JackDriver.cpp @@ -253,6 +253,7 @@ JackDriver::create_port(PatchageModule& parent, auto* ret = new PatchagePort(parent, port_type, + id, jack_port_short_name(port), label, (jack_port_flags(port) & JackPortIsInput), |