diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2021-01-12 22:57:36 +0100 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2021-01-12 22:57:36 +0100 |
commit | 45938690b7c79d6fee654eb6ac86a9e049769f16 (patch) | |
tree | 773a0cf0c5059606d2075a591a48fd4b25847d48 | |
parent | a899b231f6eed3b0522b9f53a21c92ae1d78dcf8 (diff) | |
download | synthpod-45938690b7c79d6fee654eb6ac86a9e049769f16.tar.xz |
d2tk: fixed for updated d2tk api.
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | plugins/synthpod_common_d2tk.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1 +1 @@ -0.1.6397 +0.1.6403 diff --git a/plugins/synthpod_common_d2tk.c b/plugins/synthpod_common_d2tk.c index b9bea814..eb326e96 100644 --- a/plugins/synthpod_common_d2tk.c +++ b/plugins/synthpod_common_d2tk.c @@ -653,7 +653,7 @@ _expose_patchmatrix_connection(plughandle_t *handle, unsigned o, const unsigned k = d2tk_table_get_index(tab); bool val = false; - if(d2tk_base_dial_bool_is_changed(base, D2TK_ID_IDX(o*512 + k), trect, &val)) + if(d2tk_base_dial_bool_is_changed(base, D2TK_ID_IDX(o*512 + k), trect, &val, D2TK_FLAG_NONE)) { //FIXME } |