diff options
author | David Robillard <d@drobilla.net> | 2014-11-17 21:07:55 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-11-17 21:07:55 +0000 |
commit | 27e81cf8f9a46c8080cac554f8a72afc4ad7963f (patch) | |
tree | 93907a070322a83b3ca21eea2a7e2dfe128ddfca /scripts/ingenams | |
parent | b9e61de6668c6450d7b28040519ec2cb3b1ad87f (diff) | |
download | ingen-27e81cf8f9a46c8080cac554f8a72afc4ad7963f.tar.gz ingen-27e81cf8f9a46c8080cac554f8a72afc4ad7963f.tar.bz2 ingen-27e81cf8f9a46c8080cac554f8a72afc4ad7963f.zip |
Add support for pitch bend and channel/note pressure.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5488 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'scripts/ingenams')
-rwxr-xr-x | scripts/ingenams | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ingenams b/scripts/ingenams index 952051c9..090db76b 100755 --- a/scripts/ingenams +++ b/scripts/ingenams @@ -83,7 +83,7 @@ class World: port_index = int(port_id) if world.mod_prototypes[self.mod_sym(mod_id)] == note_uri: # Adapt MCV/ADVMCV port index to Note port index - port_mapping = [ 3, 0, 2, 4, -1, -1, -1, -1, -1, -1 ] + port_mapping = [ 3, 0, 2, 4, 6, 5, -1, -1, -1, -1 ] port_index = port_mapping[port_index] if port_index == -1: sys.stderr.write('warning: unsupported MCV port %d\n' % int(port_id)) |