mixer.py: make channel debug output one indexed
This commit is contained in:
parent
f298edbb81
commit
a6ee957e21
1 changed files with 1 additions and 1 deletions
2
mixer.py
2
mixer.py
|
@ -93,7 +93,7 @@ class Mixer:
|
|||
|
||||
sysex_header = response.data[:8]
|
||||
|
||||
midi_channel = int(response.data[7])
|
||||
midi_channel = int(response.data[7]) + 1
|
||||
id = int(response.data[8])
|
||||
i_pad_flag = int(response.data[9])
|
||||
major_ver = int(response.data[10])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue