diff options
author | cbdev <cb@cbcdn.com> | 2019-09-20 17:58:27 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-09-20 17:58:27 +0200 |
commit | e556b1719a8906c14d329eb3c08574428cad0aae (patch) | |
tree | ef5c6a782ab772aa162c8aa82cf0fe901d8d06b9 /backends/maweb.h | |
parent | fe4a7b538b9b6c53299d883bee258e4d3597be9d (diff) | |
download | midimonster-e556b1719a8906c14d329eb3c08574428cad0aae.tar.gz midimonster-e556b1719a8906c14d329eb3c08574428cad0aae.tar.bz2 midimonster-e556b1719a8906c14d329eb3c08574428cad0aae.zip |
Fix maweb channel ordering
Diffstat (limited to 'backends/maweb.h')
-rw-r--r-- | backends/maweb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/maweb.h b/backends/maweb.h index b9de68f..14e4755 100644 --- a/backends/maweb.h +++ b/backends/maweb.h @@ -72,6 +72,10 @@ typedef struct /*_maweb_channel*/ { double in; double out; + + //reverse reference required because the identifiers are not stable + //because we sort the backing store... + channel* chan; } maweb_channel_data; typedef struct /*_maweb_instance_data*/ { |