fix midi numbers as notes for osc backend
note -> midinote
This commit is contained in:
parent
4a801ab668
commit
82e88d4a28
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ export function parseControlsFromHap(hap, cps) {
|
|||
if (isNote(controls.note)) {
|
||||
controls.midinote = noteToMidi(controls.note, controls.octave || 3);
|
||||
} else {
|
||||
controls.note = parseNumeral(controls.note);
|
||||
controls.midinote = parseNumeral(controls.note);
|
||||
}
|
||||
}
|
||||
controls.bank && (controls.s = controls.bank + controls.s);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue